Home
last modified time | relevance | path

Searched refs:nn_match_ratio (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/features2D/
DAKAZE_match.cpp11 const float nn_match_ratio = 0.8f; // Nearest neighbor matching ratio variable
40 if(dist1 < nn_match_ratio * dist2) { in main()
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
DLATCH_match.cpp20 const float nn_match_ratio = 0.8f; // Nearest neighbor matching ratio variable
58 if (dist1 < nn_match_ratio * dist2) { in main()
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
Dplanar_tracking.cpp16 const double nn_match_ratio = 0.8f; // Nearest-neighbour matching ratio variable
62 if(matches[i][0].distance < nn_match_ratio * matches[i][1].distance) { in process()
/external/opencv3/doc/tutorials/features2d/akaze_tracking/
Dakaze_tracking.markdown82 if(matches[i][0].distance < nn_match_ratio * matches[i][1].distance) {
88 If the closest match is *nn_match_ratio* closer than the second closest one, then it's a
/external/opencv3/doc/tutorials/features2d/akaze_matching/
Dakaze_matching.markdown76 if(dist1 < nn_match_ratio * dist2) {