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

Runs forward pass

blob = net.forward()
blob = net.forward(outputName)

blobs = net.forward(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 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.

See also
Method Details
Access public
Sealed false
Static false