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
Syntaxpublic static Net ReadNetFromTensorflow(
string model,
string config = null
)
Public Shared Function ReadNetFromTensorflow (
model As String,
Optional config As String = Nothing
) As Net
public:
static Net^ ReadNetFromTensorflow(
String^ model,
String^ config = nullptr
)
static member ReadNetFromTensorflow :
model : string *
?config : string
(* Defaults:
let _config = defaultArg config null
*)
-> Net
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:
NetNet object.
See Also