OpenCV  4.10.0
开源计算机视觉库
加载中...
搜索中...
无匹配项
公共成员函数 | 所有成员列表
cv::text::TextDetector 类参考抽象

提供文本检测算法接口的抽象类。 更多...

#include <opencv2/text/textDetector.hpp>

cv::text::TextDetector 的协作图

公共成员函数

virtual ~TextDetector ()
 
virtual void detect (InputArray inputImage, std::vector< Rect > &Bbox, std::vector< float > &confidence)=0
 提供用于在图像中检测文本的快速简便接口的方法。
 

详细描述

提供文本检测算法接口的抽象类。

构造函数和析构函数文档

◆ ~TextDetector()

virtual cv::text::TextDetector::~TextDetector ( )
inlinevirtual

成员函数文档

◆ detect()

virtual void cv::text::TextDetector::detect ( InputArray  inputImage,
std::vector< Rect > &  Bbox,
std::vector< float > &  confidence 
)
纯虚函数
Python
cv.text.TextDetector.detect(inputImage) -> Bbox, confidence

提供用于在图像中检测文本的快速简便接口的方法。

参数
inputImage要处理的图像
Bbox存储检测到的单词边界框的 Rect 向量
置信度将使用分类器对所选边界框的置信度进行更新的 float 向量

实现于 cv::text::TextDetectorCNN 中。


此类的文档从以下文件生成