Click or drag to resize

DnnInvokeReadNet Method

http://www.emgu.com
Read deep learning network represented in one of the supported formats.

Namespace:  Emgu.CV.Dnn
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static Net ReadNet(
	string model,
	string config = null,
	string framework = null
)

Parameters

model
Type: SystemString
Binary file contains trained weights. The following file extensions are expected for models from different frameworks: *.caffemodel(Caffe, http://caffe.berkeleyvision.org/) *.pb (TensorFlow, https://www.tensorflow.org/) *.t7 | *.net (Torch, http://torch.ch/) *.weights (Darknet, https://pjreddie.com/darknet/) *.bin (DLDT, https://software.intel.com/openvino-toolkit)
config (Optional)
Type: SystemString
Text file contains network configuration. It could be a file with the following extensions: *.prototxt(Caffe, http://caffe.berkeleyvision.org/) *.pbtxt (TensorFlow, https://www.tensorflow.org/) *.cfg (Darknet, https://pjreddie.com/darknet/) *.xml (DLDT, https://software.intel.com/openvino-toolkit)
framework (Optional)
Type: SystemString
Explicit framework name tag to determine a format.

Return Value

Type: Net
Net object.
See Also