|
OpenCV 4.5.3(日本語機械翻訳)
|
An abstract class providing interface for text detection algorithms [詳解]
#include <textDetector.hpp>
cv::text::TextDetectorCNNに継承されています。
公開メンバ関数 |
|
| virtual CV_WRAP void | detect (InputArray inputImage, CV_OUT std::vector< Rect > &Bbox, CV_OUT std::vector< float > &confidence)=0 |
| 画像内のテキストを検出するための迅速かつシンプルなインターフェースを提供するメソッド[【詳解】(英語]
|
|
テキスト検出アルゴリズムのインターフェースを提供する抽象クラス
|
pure virtual |
画像内のテキストを検出するための迅速かつシンプルなインターフェースを提供するメソッド
| inputImage | 処理する画像 |
| Bbox | 検出された単語のバウンディングボックスを格納する Rect のベクトル |
| confidence | 選択されたバウンディングボックスに対する分類器の信頼度が更新される float のベクトル |
cv::text::TextDetectorCNNで実装されています.