Click or drag to resize

DnnInvokeReadNetFromDarknet Method (Byte, Byte)

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

Namespace:  Emgu.CV.Dnn
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static Net ReadNetFromDarknet(
	byte[] bufferCfg,
	byte[] bufferModel = null
)

Parameters

bufferCfg
Type: SystemByte
Buffer containing the content of the .cfg file with text description of the network architecture.
bufferModel (Optional)
Type: SystemByte
Buffer containing the content of the the .weights file with learned network.

Return Value

Type: Net
Net object.
See Also