| CvDnnReadNet Method |
Read deep learning network represented in one of the supported formats.
This function automatically detects an origin framework of trained model
and calls an appropriate function such @ref readNetFromCaffe, @ref readNetFromTensorflow,
Namespace:
OpenCvSharp.Dnn
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Net ReadNet(
string model,
string config = "",
string framework = ""
)
Public Shared Function ReadNet (
model As String,
Optional config As String = "",
Optional framework As String = ""
) As Net
public:
static Net^ ReadNet(
String^ model,
String^ config = L"",
String^ framework = L""
)
static member ReadNet :
model : string *
?config : string *
?framework : string
(* Defaults:
let _config = defaultArg config ""
let _framework = defaultArg framework ""
*)
-> Net
Parameters
- model
- Type: SystemString
Binary file contains trained weights. The following file
* extensions are expected for models from different frameworks:
* * `*.caffemodel` (Caffe, http://caffe.berkeleyvision.org/)
* * `*.pb` (TensorFlow, https://www.tensorflow.org/)
* * `*.t7` | `*.net` (Torch, http://torch.ch/)
* * `*.weights` (Darknet, https://pjreddie.com/darknet/)
* * `*.bin` (DLDT, https://software.intel.com/openvino-toolkit) - config (Optional)
- Type: SystemString
Text file contains network configuration. It could be a
* file with the following extensions:
* * `*.prototxt` (Caffe, http://caffe.berkeleyvision.org/)
* * `*.pbtxt` (TensorFlow, https://www.tensorflow.org/)
* * `*.cfg` (Darknet, https://pjreddie.com/darknet/)
* * `*.xml` (DLDT, https://software.intel.com/openvino-toolkit) - framework (Optional)
- Type: SystemString
Explicit framework name tag to determine a format.
Return Value
Type:
Net[Missing <returns> documentation for "M:OpenCvSharp.Dnn.CvDnn.ReadNet(System.String,System.String,System.String)"]
See Also