| 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
)
Public Sub Forward (
outputBlobs As IEnumerable(Of Mat),
Optional outputName As String = Nothing
)
public:
void Forward(
IEnumerable<Mat^>^ outputBlobs,
String^ outputName = nullptr
)
member Forward :
outputBlobs : IEnumerable<Mat> *
?outputName : string
(* Defaults:
let _outputName = defaultArg outputName null
*)
-> unit
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