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

2つの画像間のマッチに関する情報を含む構造体。 続き...

#include <opencv2/stitching/detail/matchers.hpp>

Collaboration diagram for cv::detail::MatchesInfo:

公開メンバ関数

 MatchesInfo ()
 
 MatchesInfo (const MatchesInfo &other)
 
std::vector< uchargetInliers ()
 
std::vector< DMatchgetMatches ()
 
MatchesInfooperator= (const MatchesInfo &other)
 

公開変数類

double confidence
 2つの画像が同じパノラマに由来する確信度。
 
int dst_img_idx
 画像のインデックス(省略可能)
 
Mat H
 推定された変換。
 
std::vector< ucharinliers_mask
 幾何的に一貫したマッチのマスク。
 
std::vector< DMatchmatches
 
int num_inliers
 幾何的に一貫したマッチの数。
 
int src_img_idx
 

詳細説明

2つの画像間のマッチに関する情報を含む構造体。

これらの画像間には変換が存在すると仮定される。変換は、選択されたマッチャーに応じてホモグラフィまたはアフィン変換となる。

参照
detail::FeaturesMatcher

構築子と解体子の詳解

◆ MatchesInfo() [1/2]

cv::detail::MatchesInfo::MatchesInfo ( )

◆ MatchesInfo() [2/2]

cv::detail::MatchesInfo::MatchesInfo ( const MatchesInfo & other)

メンバ関数詳解

◆ getInliers()

std::vector< uchar > cv::detail::MatchesInfo::getInliers ( )
inline

◆ getMatches()

std::vector< DMatch > cv::detail::MatchesInfo::getMatches ( )
inline

◆ operator=()

MatchesInfo & cv::detail::MatchesInfo::operator= ( const MatchesInfo & other)

メンバ変数詳解

◆ confidence

double cv::detail::MatchesInfo::confidence

2つの画像が同じパノラマに由来する確信度。

◆ dst_img_idx

int cv::detail::MatchesInfo::dst_img_idx

画像のインデックス(省略可能)

◆ H

Mat cv::detail::MatchesInfo::H

推定された変換。

◆ inliers_mask

std::vector<uchar> cv::detail::MatchesInfo::inliers_mask

幾何的に一貫したマッチのマスク。

◆ matches

std::vector<DMatch> cv::detail::MatchesInfo::matches

◆ num_inliers

int cv::detail::MatchesInfo::num_inliers

幾何的に一貫したマッチの数。

◆ src_img_idx

int cv::detail::MatchesInfo::src_img_idx

この構造体詳解は次のファイルから抽出されました: