OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nn_matches
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/samples/cpp/tutorial_code/features2D/
AKAZE_match.cpp
30
vector< vector<DMatch> >
nn_matches
;
local
31
matcher.knnMatch(desc1, desc2,
nn_matches
, 2);
35
for(size_t i = 0; i <
nn_matches
.size(); i++) {
36
DMatch first =
nn_matches
[i][0];
37
float dist1 =
nn_matches
[i][0].distance;
38
float dist2 =
nn_matches
[i][1].distance;
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
LATCH_match.cpp
48
vector< vector<DMatch> >
nn_matches
;
local
49
matcher.knnMatch(desc1, desc2,
nn_matches
, 2);
53
for (size_t i = 0; i <
nn_matches
.size(); i++) {
54
DMatch first =
nn_matches
[i][0];
55
float dist1 =
nn_matches
[i][0].distance;
56
float dist2 =
nn_matches
[i][1].distance;
/external/opencv3/doc/tutorials/features2d/akaze_matching/
akaze_matching.markdown
64
vector< vector<DMatch> >
nn_matches
;
65
matcher.knnMatch(desc1, desc2,
nn_matches
, 2);
71
for(size_t i = 0; i <
nn_matches
.size(); i++) {
72
DMatch first =
nn_matches
[i][0];
73
float dist1 =
nn_matches
[i][0].distance;
74
float dist2 =
nn_matches
[i][1].distance;
Completed in 144 milliseconds