| forward (cv.Net) - MATLAB File Help |
Runs forward pass
blob = net.forward()
blob = net.forward(outputName)
blobs = net.forward(outBlobNames)
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 blob for first output of specified layer.
The second form runs forward pass to compute outputs of layers
listed in outBlobNames. It returns blobs for first outputs of
specified layers.
| Access | public |
| Sealed | false |
| Static | false |