Click or drag to resize

DnnInvokeReadNetFromDarknet Method (String, String)

http://www.emgu.com
Reads a network model stored in Darknet model files.

Namespace:  Emgu.CV.Dnn
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static Net ReadNetFromDarknet(
	string cfgFile,
	string darknetModel = null
)

Parameters

cfgFile
Type: SystemString
path to the .cfg file with text description of the network architecture.
darknetModel (Optional)
Type: SystemString
path to the .weights file with learned network.

Return Value

Type: Net
Network object that ready to do forward, throw an exception in failure cases.
See Also