Click or drag to resize

DnnInvokeReadNetFromTensorflow Method (String, String)

http://www.emgu.com
Reads a network model stored in TensorFlow framework's format.

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

Parameters

model
Type: SystemString
path to the .pb file with binary protobuf description of the network architecture
config (Optional)
Type: SystemString
path to the .pbtxt file that contains text graph definition in protobuf format. Resulting Net object is built by text graph using weights from a binary one that let us make it more flexible.

Return Value

Type: Net
Net object.
See Also