提供文本检测算法接口的抽象类。 更多...
#include <opencv2/text/textDetector.hpp>
◆ ~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 中。
此类的文档从以下文件生成