Package org.opencv.text
Class TextDetectorCNN
- java.lang.Object
- 
- org.opencv.text.TextDetector
- 
- org.opencv.text.TextDetectorCNN
 
 
- 
 public class TextDetectorCNN extends TextDetector TextDetectorCNN class provides the functionallity of text bounding box detection. This class is representing to find bounding boxes of text words given an input image. This class uses OpenCV dnn module to load pre-trained model described in CITE: LiaoSBWL17. The original repository with the modified SSD Caffe version: https://github.com/MhLiao/TextBoxes. Model can be downloaded from [DropBox](https://www.dropbox.com/s/g8pjzv2de9gty8g/TextBoxes_icdar13.caffemodel?dl=0). Modified .prototxt file with the model description can be found inopencv_contrib/modules/text/samples/textbox.prototxt.
- 
- 
Field Summary- 
Fields inherited from class org.opencv.text.TextDetectornativeObj
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedTextDetectorCNN(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextDetectorCNN__fromPtr__(long addr)static TextDetectorCNNcreate(java.lang.String modelArchFilename, java.lang.String modelWeightsFilename)voiddetect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence)Method that provides a quick and simple interface to detect text inside an imageprotected voidfinalize()- 
Methods inherited from class org.opencv.text.TextDetectorgetNativeObjAddr
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static TextDetectorCNN __fromPtr__(long addr) 
 - 
createpublic static TextDetectorCNN create(java.lang.String modelArchFilename, java.lang.String modelWeightsFilename) 
 - 
detectpublic void detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence) Description copied from class:TextDetectorMethod that provides a quick and simple interface to detect text inside an image- Overrides:
- detectin class- TextDetector
- Parameters:
- inputImage- an image expected to be a CV_U8C3 of any size
- Bbox- a vector of Rect that will store the detected word bounding box
- confidence- a vector of float that will be updated with the confidence the classifier has for the selected bounding box
 
 - 
finalizeprotected void finalize() throws java.lang.Throwable- Overrides:
- finalizein class- TextDetector
- Throws:
- java.lang.Throwable
 
 
- 
 
-