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

キーポイント記述子をマッチングするためのクラス。 詳細...

#include <opencv2/core/types.hpp>

Collaboration diagram for cv::DMatch:

公開メンバ関数

 DMatch ()
 
 DMatch (int _queryIdx, int _trainIdx, float _distance)
 
 DMatch (int _queryIdx, int _trainIdx, int _imgIdx, float _distance)
 
bool operator< (const DMatch &m) const
 

公開変数類

float distance
 
int imgIdx
 学習画像のインデックス
 
int queryIdx
 クエリ記述子のインデックス
 
int trainIdx
 学習記述子のインデックス
 

詳細説明

キーポイント記述子をマッチングするためのクラス。

クエリ記述子のインデックス、学習記述子のインデックス、学習画像のインデックス、および記述子間の距離。

構築子と解体子の詳解

◆ DMatch() [1/3]

cv::DMatch::DMatch ( )
Python:
cv.DMatch() -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch object>

◆ DMatch() [2/3]

cv::DMatch::DMatch ( int _queryIdx,
int _trainIdx,
float _distance )
Python:
cv.DMatch() -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch object>

◆ DMatch() [3/3]

cv::DMatch::DMatch ( int _queryIdx,
int _trainIdx,
int _imgIdx,
float _distance )
Python:
cv.DMatch() -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch object>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch object>

メンバ関数詳解

◆ operator<()

bool cv::DMatch::operator< ( const DMatch & m) const

メンバ変数詳解

◆ distance

float cv::DMatch::distance

◆ imgIdx

int cv::DMatch::imgIdx

学習画像のインデックス

◆ queryIdx

int cv::DMatch::queryIdx

クエリ記述子のインデックス

◆ trainIdx

int cv::DMatch::trainIdx

学習記述子のインデックス


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