OpenCV 5.0.0
Open Source Computer Vision
読み込み中...
検索中...
見つかりません
🤖 AIによる機械翻訳(非公式) — これは OpenCV 5.0.0 公式リファレンス(英語)を AI (Claude) で自動翻訳したものです。訳に誤りを含む場合があります。正確な情報は 公式英語版(原文) を参照してください。
cv::text::TextDetector クラスabstract

テキスト検出アルゴリズムのインターフェースを提供する抽象クラス。 詳細...

#include <opencv2/text/textDetector.hpp>

Collaboration diagram for 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 )
pure virtual
Python:
cv.text.TextDetector.detect(inputImage) -> Bbox, confidence

画像内のテキストを検出するための、手軽でシンプルなインターフェースを提供するメソッド。

引数
inputImage処理対象の画像
Bbox検出された単語のバウンディングボックスを格納するRectのベクトル
confidence選択されたバウンディングボックスに対して分類器が持つ信頼度で更新されるfloatのベクトル

cv::text::TextDetectorCNNで実装されている。


このクラス詳解は次のファイルから抽出されました: