DnnInvokeReadNetFromONNX Method |
http://www.emgu.com
Reads a network model ONNX.
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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