DnnInvokeReadNetFromCaffe Method (String, String) |
http://www.emgu.com
Reads a network model stored in Caffe 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 ReadNetFromCaffe(
string prototxt,
string caffeModel = null
)
Public Shared Function ReadNetFromCaffe (
prototxt As String,
Optional caffeModel As String = Nothing
) As Net
public:
static Net^ ReadNetFromCaffe(
String^ prototxt,
String^ caffeModel = nullptr
)
static member ReadNetFromCaffe :
prototxt : string *
?caffeModel : string
(* Defaults:
let _caffeModel = defaultArg caffeModel null
*)
-> Net
Parameters
- prototxt
- Type: SystemString
path to the .prototxt file with text description of the network architecture. - caffeModel (Optional)
- Type: SystemString
path to the .caffemodel file with learned network.
Return Value
Type:
NetNet object.
See Also