| NetForward Method (String) |
Runs forward pass to compute output of layer with name @p outputName.
By default runs forward pass for the whole network.
Namespace:
OpenCvSharp.Dnn
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat Forward(
string outputName = null
)
Public Function Forward (
Optional outputName As String = Nothing
) As Mat
public:
Mat^ Forward(
String^ outputName = nullptr
)
member Forward :
?outputName : string
(* Defaults:
let _outputName = defaultArg outputName null
*)
-> Mat
Parameters
- outputName (Optional)
- Type: SystemString
name for layer which output is needed to get
Return Value
Type:
Matblob for first output of specified layer.
See Also