DnnInvokeReadNetFromTensorflow Method (Byte, Byte) |
http://www.emgu.com
Reads a network model stored in TensorFlow framework's format.
Namespace:
Emgu.CV.Dnn
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static Net ReadNetFromTensorflow(
byte[] model,
byte[] config = null
)
Public Shared Function ReadNetFromTensorflow (
model As Byte(),
Optional config As Byte() = Nothing
) As Net
public:
static Net^ ReadNetFromTensorflow(
array<unsigned char>^ model,
array<unsigned char>^ config = nullptr
)
static member ReadNetFromTensorflow :
model : byte[] *
?config : byte[]
(* Defaults:
let _config = defaultArg config null
*)
-> Net
Parameters
- model
- Type: SystemByte
buffer containing the content of the pb file - config (Optional)
- Type: SystemByte
buffer containing the content of the pbtxt file
Return Value
Type:
NetNet object.
See Also