TextDetectorCNN 类
- java.lang.Object
-
- org.opencv.text.TextDetector
-
- org.opencv.text.TextDetectorCNN
-
public class TextDetectorCNN extends TextDetector
TextDetectorCNN 类提供文本边界框检测的功能。此类用于在给定输入图像的情况下查找文本单词的边界框。此类使用 OpenCV dnn 模块加载在 CITE: LiaoSBWL17 中描述的预训练模型。修改后的 SSD Caffe 版本的原始存储库:https://github.com/MhLiao/TextBoxes。模型可以从 [DropBox](https://www.dropbox.com/s/g8pjzv2de9gty8g/TextBoxes_icdar13.caffemodel?dl=0) 下载。包含模型描述的修改后的 .prototxt 文件可在opencv_contrib/modules/text/samples/textbox.prototxt
中找到。
-
-
字段摘要
-
从类 org.opencv.text.TextDetector 继承的字段
nativeObj
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protected
TextDetectorCNN(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static TextDetectorCNN
__fromPtr__(long addr)
static TextDetectorCNN
create(java.lang.String modelArchFilename, java.lang.String modelWeightsFilename)
void
detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence)
提供快速简单的接口来检测图像内文本的方法protected void
finalize()
-
从类 org.opencv.text.TextDetector 继承的方法
getNativeObjAddr
-
-
-
-
方法详情
-
__fromPtr__
public static TextDetectorCNN __fromPtr__(long addr)
-
detect
public void detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence)
从类复制的描述:TextDetector
提供快速简单的接口来检测图像内文本的方法- 覆盖
detect
在类中TextDetector
- 参数
inputImage
- 预期为任何大小的 CV_U8C3 图像Bbox
- 将存储检测到的单词边界框的 Rect 向量confidence
- 将使用分类器对所选边界框的置信度进行更新的浮点数向量
-
create
public static TextDetectorCNN create(java.lang.String modelArchFilename, java.lang.String modelWeightsFilename)
-
finalize
protected void finalize() throws java.lang.Throwable
- 覆盖
finalize
在类中TextDetector
- 抛出
java.lang.Throwable
-
-