类 TextDetectionModel_EAST
- java.lang.Object
-
- org.opencv.dnn.Model
-
- org.opencv.dnn.TextDetectionModel
-
- org.opencv.dnn.TextDetectionModel_EAST
-
public class TextDetectionModel_EAST extends TextDetectionModel
此类表示与 EAST 模型兼容的文本检测深度学习网络的高级 API。可配置参数:- (float) confThreshold - 用于根据置信度过滤框,默认值:0.5f - (float) nmsThreshold - 用于非最大抑制,默认值:0.0f
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protected
TextDetectionModel_EAST(long addr)
TextDetectionModel_EAST(java.lang.String model)
从以一种受支持的格式表示的网络创建文本检测模型。TextDetectionModel_EAST(java.lang.String model, java.lang.String config)
从以一种受支持的格式表示的网络创建文本检测模型。TextDetectionModel_EAST(Net network)
从深度学习网络创建文本检测算法
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static TextDetectionModel_EAST
__fromPtr__(long addr)
protected void
finalize()
float
getConfidenceThreshold()
获取检测置信度阈值float
getNMSThreshold()
获取检测置信度阈值TextDetectionModel_EAST
setConfidenceThreshold(float confThreshold)
设置检测置信度阈值TextDetectionModel_EAST
setNMSThreshold(float nmsThreshold)
设置检测 NMS 过滤阈值-
从类 org.opencv.dnn.TextDetectionModel继承的方法
detect, detect, detectTextRectangles, detectTextRectangles
-
从类 org.opencv.dnn.Model继承的方法
enableWinograd, getNativeObjAddr, predict, setInputCrop, setInputMean, setInputParams, setInputParams, setInputParams, setInputParams, setInputParams, setInputParams, setInputScale, setInputSize, setInputSize, setInputSwapRB, setOutputNames, setPreferableBackend, setPreferableTarget
-
-
-
-
构造函数详情
-
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)
从以一种受支持的格式表示的网络创建文本检测模型。model
和config
参数的顺序无关紧要。- 参数
model
- 包含训练权重的二进制文件。config
- 包含网络配置的文本文件。
-
TextDetectionModel_EAST
public TextDetectionModel_EAST(java.lang.String model)
从以一种受支持的格式表示的网络创建文本检测模型。model
和config
参数的顺序无关紧要。- 参数
model
- 包含训练权重的二进制文件。
-
-
方法详情
-
__fromPtr__
public static TextDetectionModel_EAST __fromPtr__(long addr)
-
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
-
-