DnnInvokeReadNetFromONNX Method |
http://www.emgu.com
Reads a network model ONNX.
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static Net ReadNetFromONNX(
string onnxFile
)
Public Shared Function ReadNetFromONNX (
onnxFile As String
) As Net
public:
static Net^ ReadNetFromONNX(
String^ onnxFile
)
static member ReadNetFromONNX :
onnxFile : string -> Net
Parameters
- onnxFile
- Type: SystemString
Path to the .onnx file with text description of the network architecture.
Return Value
Type:
NetNetwork object that ready to do forward, throw an exception in failure cases.
See Also