| TextDetectorCNNCreate Method (String, String) |
Creates an instance of the TextDetectorCNN class using the provided parameters.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static TextDetectorCNN Create(
string modelArchFilename,
string modelWeightsFilename
)
Public Shared Function Create (
modelArchFilename As String,
modelWeightsFilename As String
) As TextDetectorCNN
public:
static TextDetectorCNN^ Create(
String^ modelArchFilename,
String^ modelWeightsFilename
)
static member Create :
modelArchFilename : string *
modelWeightsFilename : string -> TextDetectorCNN
Parameters
- modelArchFilename
- Type: SystemString
the relative or absolute path to the prototxt file describing the classifiers architecture. - modelWeightsFilename
- Type: SystemString
the relative or absolute path to the file containing the pretrained weights of the model in caffe-binary form.
Return Value
Type:
TextDetectorCNN[Missing <returns> documentation for "M:OpenCvSharp.TextDetectorCNN.Create(System.String,System.String)"]
See Also