Class TextDetector
An abstract class providing interface for text detection algorithms
Implements
Inherited Members
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public abstract class TextDetector : DisposableCvObject, ICvPtrHolder
Methods
| Improve this Doc View SourceDetect(InputArray, out Rect[], out Single[])
Method that provides a quick and simple interface to detect text inside an image
Declaration
public virtual void Detect(InputArray inputImage, out Rect[] bbox, out float[] confidence)
Parameters
Type | Name | Description |
---|---|---|
InputArray | inputImage | an image to process |
OpenCvSharp.Rect[] | bbox | a vector of Rect that will store the detected word bounding box |
System.Single[] | confidence | a vector of float that will be updated with the confidence the classifier has for the selected bounding box |