类 TextDetectionModel_EAST


  • public class TextDetectionModel_EAST
    extends TextDetectionModel
    此类表示与 EAST 模型兼容的文本检测深度学习网络的高级 API。可配置参数:- (float) confThreshold - 用于根据置信度过滤框,默认值:0.5f - (float) nmsThreshold - 用于非最大抑制,默认值:0.0f
    • 构造函数详情

      • TextDetectionModel_EAST

        protected TextDetectionModel_EAST​(long addr)
      • TextDetectionModel_EAST

        public TextDetectionModel_EAST​(Net network)
        从深度学习网络创建文本检测算法
        参数
        network - Net 对象
      • TextDetectionModel_EAST

        public TextDetectionModel_EAST​(java.lang.String model,
                                       java.lang.String config)
        从以一种受支持的格式表示的网络创建文本检测模型。modelconfig 参数的顺序无关紧要。
        参数
        model - 包含训练权重的二进制文件。
        config - 包含网络配置的文本文件。
      • TextDetectionModel_EAST

        public TextDetectionModel_EAST​(java.lang.String model)
        从以一种受支持的格式表示的网络创建文本检测模型。modelconfig 参数的顺序无关紧要。
        参数
        model - 包含训练权重的二进制文件。
    • 方法详情

      • setConfidenceThreshold

        public TextDetectionModel_EAST setConfidenceThreshold​(float confThreshold)
        设置检测置信度阈值
        参数
        confThreshold - 用于根据置信度过滤框的阈值
        返回
        自动生成
      • getConfidenceThreshold

        public float getConfidenceThreshold()
        获取检测置信度阈值
        返回
        自动生成
      • setNMSThreshold

        public TextDetectionModel_EAST setNMSThreshold​(float nmsThreshold)
        设置检测 NMS 过滤阈值
        参数
        nmsThreshold - 用于非最大抑制的阈值
        返回
        自动生成
      • getNMSThreshold

        public float getNMSThreshold()
        获取检测置信度阈值
        返回
        自动生成
      • finalize

        protected void finalize()
                         throws java.lang.Throwable
        覆盖
        finalize 在类 TextDetectionModel
        抛出
        java.lang.Throwable