OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kpts2
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/samples/cpp/tutorial_code/features2D/
AKAZE_match.cpp
22
vector<KeyPoint> kpts1,
kpts2
;
local
27
akaze->detectAndCompute(img2, noArray(),
kpts2
, desc2);
42
matched2.push_back(
kpts2
[first.trainIdx]);
72
cout << "# Keypoints 2: \t" <<
kpts2
.size() << endl;
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/
LATCH_match.cpp
33
vector<KeyPoint> kpts1,
kpts2
;
local
44
orb_detector->detect(img2,
kpts2
);
45
latch->compute(img2,
kpts2
, desc2);
60
matched2.push_back(
kpts2
[first.trainIdx]);
91
cout << "# Keypoints 2: \t" <<
kpts2
.size() << endl;
Completed in 2111 milliseconds