forwardAndRetrieve (cv.Net) - MATLAB File Help |
Runs forward pass
blobs = net.forwardAndRetrieve()
blobs = net.forwardAndRetrieve(outputName)
blobsArr = net.forwardAndRetrieve(outBlobNames)
outBlobNames
(cell array of cell arrays).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
.
Access | public |
Sealed | false |
Static | false |