forwardAndRetrieve (cv.Net) - MATLAB File Help
cv.Net/forwardAndRetrieve

Runs forward pass

blobs = net.forwardAndRetrieve()
blobs = net.forwardAndRetrieve(outputName)

blobsArr = net.forwardAndRetrieve(outBlobNames)

Input

Output

The first form runs forward pass to compute output of layer with name outputName. By default (outputName not specified) runs forward pass for the whole network (i.e names = net.getLayerNames(); outputName = names(end);). It returns all output blobs for specified layer.

The second form runs forward pass to compute outputs of layers listed in outBlobNames. It returns all output blobs for each layer specified in outBlobNames.

See also
Method Details
Access public
Sealed false
Static false