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 中找到。
    • 构造函数详情

      • TextDetectorCNN

        protected TextDetectorCNN​(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