DnnInvokeReadNetFromCaffe Method (Byte, Byte) |
http://www.emgu.com
Reads a network model stored in Caffe 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 ReadNetFromCaffe(
byte[] prototxt,
byte[] caffeModel = null
)
Public Shared Function ReadNetFromCaffe (
prototxt As Byte(),
Optional caffeModel As Byte() = Nothing
) As Net
public:
static Net^ ReadNetFromCaffe(
array<unsigned char>^ prototxt,
array<unsigned char>^ caffeModel = nullptr
)
static member ReadNetFromCaffe :
prototxt : byte[] *
?caffeModel : byte[]
(* Defaults:
let _caffeModel = defaultArg caffeModel null
*)
-> Net
Parameters
- prototxt
- Type: SystemByte
Buffer containing the content of the .prototxt file - caffeModel (Optional)
- Type: SystemByte
Buffer containing the content of the .caffemodel file
Return Value
Type:
NetNet object.
See Also