OpenCV 4.5.3(日本語機械翻訳)
公開メンバ関数 | 限定公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
cv::detail::AffineBestOf2NearestMatcher クラス

Features matcher similar to cv::detail::BestOf2NearestMatcher which finds two best matches for each feature and leaves the best one only if the ratio between descriptor distances is greater than the threshold match_conf. [詳解]

#include <matchers.hpp>

cv::detail::BestOf2NearestMatcherを継承しています。

公開メンバ関数

CV_WRAP AffineBestOf2NearestMatcher (bool full_affine=false, bool try_use_gpu=false, float match_conf=0.3f, int num_matches_thresh1=6)
画像間のアフィン変換を想定した「best of 2 nearest」マッチャーを構築します.[【詳解】(英語]
- 基底クラス cv::detail::BestOf2NearestMatcher に属する継承公開メンバ関数
CV_WRAP BestOf2NearestMatcher (bool try_use_gpu=false, float match_conf=0.3f, int num_matches_thresh1=6, int num_matches_thresh2=6)
best of 2 nearest" matcherを構築します.[【詳解】(英語]
CV_WRAP void collectGarbage () CV_OVERRIDE
以前に割り当てられた未使用のメモリがあればそれを解放します。[【詳解】(英語]
- 基底クラス cv::detail::FeaturesMatcher に属する継承公開メンバ関数
CV_WRAP_AS (apply) void operator()(const ImageFeatures &features1
CV_WRAP_AS(apply2) void operator()(const std CV_WRAP bool isThreadSafe () const
画像のマッチングを行います。[【詳解】(英語]

限定公開メンバ関数

void match (const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_info) CV_OVERRIDE
このメソッドは,ラッパー detail::FeaturesMatcher::operator()_ を動作させるために,マッチングロジックを実装する必要があります.[【詳解】(英語]
- 基底クラス cv::detail::FeaturesMatcher に属する継承限定公開メンバ関数
FeaturesMatcher (bool is_thread_safe=false)

限定公開変数類

bool full_affine_
- 基底クラス cv::detail::BestOf2NearestMatcher に属する継承限定公開変数類
int num_matches_thresh1_
int num_matches_thresh2_
Ptr< FeaturesMatcher > impl_
- 基底クラス cv::detail::FeaturesMatcher に属する継承限定公開変数類
bool is_thread_safe_

その他の継承メンバ

- 基底クラス cv::detail::BestOf2NearestMatcher に属する継承静的公開メンバ関数
static CV_WRAP Ptr< BestOf2NearestMatcher > create (bool try_use_gpu=false, float match_conf=0.3f, int num_matches_thresh1=6, int num_matches_thresh2=6)
- 基底クラス cv::detail::FeaturesMatcher に属する継承公開変数類
const ImageFeatures & features2
const ImageFeatures CV_OUT MatchesInfo & matches_info { match(features1, features2, matches_info)

詳解

以下に似た特徴量マッチングツールcv::detail::BestOf2NearestMatcherこれは,各特徴量に対して2つのベストマッチを見つけ,ディスクリプタ間の距離の比が閾値 match_conf よりも大きい場合にのみ,ベストマッチを残すものです.

とは異なりcv::detail::BestOf2NearestMatcherこの Matcherは,アフィン変換を利用します(アフィン変換の推定値は matches_info に格納されます).

参照
cv::detail::FeaturesMatcher cv::detail::BestOf2NearestMatcher

構築子と解体子

AffineBestOf2NearestMatcher()

CV_WRAP cv::detail::AffineBestOf2NearestMatcher::AffineBestOf2NearestMatcher ( bool full_affine = false,
bool try_use_gpu = false,
float match_conf = 0.3f,
int num_matches_thresh1 = 6
)
inline

画像間のアフィン変換を想定した「best of 2 nearest」マッチャーを構築します.

引数
full_affine 6自由度の完全なアフィン変換を使うか,回転,並進,一様なスケーリングのみを使った4自由度の縮小変換を使うか.
try_use_gpu GPUの使用を試みるかどうか
match_conf 一致する距離のしきい値
num_matches_thresh1 インライア分類ステップで使用される2Dアフィン変換の推定に必要なマッチの最小数
参照
cv::estimateAffine2D cv::estimateAffinePartial2D

関数詳解

match()

void cv::detail::AffineBestOf2NearestMatcher::match ( const ImageFeatures & features1,
const ImageFeatures & features2,
MatchesInfo & matches_info
)
protected virtual

このメソッドは,ラッパー detail::FeaturesMatcher::operator()_ を動作させるために,マッチングロジックを実装する必要があります.

引数
features1 1枚目の画像の特徴
features2 2番目の画像の特徴
matches_info 見つかったマッチ

cv::detail::BestOf2NearestMatcherを再実装します。


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