Features matcher 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::FeaturesMatcherを継承しています。
cv::detail::AffineBestOf2NearestMatcher,
cv::detail::BestOf2NearestRangeMatcherに継承されています。
|
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) |
|
|
int |
num_matches_thresh1_
|
|
int |
num_matches_thresh2_
|
|
Ptr<
FeaturesMatcher
> |
impl_
|
|
bool |
is_thread_safe_
|
|
各特徴に対して最適な2つのマッチを見つけ,ディスクリプタ間の距離の比が閾値よりも大きい場合にのみ,最適なものを残す特徴照合器 match_conf
- 参照
-
detail::FeaturesMatcher
◆
BestOf2NearestMatcher()
CV_WRAP cv::detail::BestOf2NearestMatcher::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を構築します.
- 引数
-
try_use_gpu |
GPUの使用を試みるかどうか |
match_conf |
一致する距離のしきい値 |
num_matches_thresh1 |
インライア分類ステップで使用される2次元射影変換の推定に必要な最小一致数 |
num_matches_thresh2 |
インライアに対する2次元射影変換の再推定に必要な最小一致数 |
◆
collectGarbage()
CV_WRAP void cv::detail::BestOf2NearestMatcher::collectGarbage
|
( |
|
) |
|
|
virtual
|
◆
match()
このクラス詳解は次のファイルから抽出されました: