Click or drag to resize

NetForward Method (IEnumerableMat, String)

Runs forward pass to compute output of layer with name @p outputName.

Namespace:  OpenCvSharp.Dnn
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public void Forward(
	IEnumerable<Mat> outputBlobs,
	string outputName = null
)

Parameters

outputBlobs
Type: System.Collections.GenericIEnumerableMat
contains all output blobs for specified layer.
outputName (Optional)
Type: SystemString
name for layer which output is needed to get. If outputName is empty, runs forward pass for the whole network.
See Also