Searched refs:matched1 (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/samples/cpp/tutorial_code/features2D/ |
D | AKAZE_match.cpp | 33 vector<KeyPoint> matched1, matched2, inliers1, inliers2; in main() local 41 matched1.push_back(kpts1[first.queryIdx]); in main() 46 for(unsigned i = 0; i < matched1.size(); i++) { in main() 48 col.at<double>(0) = matched1[i].pt.x; in main() 49 col.at<double>(1) = matched1[i].pt.y; in main() 58 inliers1.push_back(matched1[i]); in main() 68 double inlier_ratio = inliers1.size() * 1.0 / matched1.size(); in main() 73 cout << "# Matches: \t" << matched1.size() << endl; in main()
|
/external/opencv3/samples/cpp/tutorial_code/xfeatures2D/ |
D | LATCH_match.cpp | 51 vector<KeyPoint> matched1, matched2, inliers1, inliers2; in main() local 59 matched1.push_back(kpts1[first.queryIdx]); in main() 64 for (unsigned i = 0; i < matched1.size(); i++) { in main() 66 col.at<double>(0) = matched1[i].pt.x; in main() 67 col.at<double>(1) = matched1[i].pt.y; in main() 76 inliers1.push_back(matched1[i]); in main() 87 double inlier_ratio = inliers1.size() * 1.0 / matched1.size(); in main() 92 cout << "# Matches: \t" << matched1.size() << endl; in main()
|
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
D | planar_tracking.cpp | 59 vector<KeyPoint> matched1, matched2; in process() local 63 matched1.push_back(first_kp[matches[i][0].queryIdx]); in process() 67 stats.matches = (int)matched1.size(); in process() 72 if(matched1.size() >= 4) { in process() 73 homography = findHomography(Points(matched1), Points(matched2), in process() 77 if(matched1.size() < 4 || homography.empty()) { in process() 84 for(unsigned i = 0; i < matched1.size(); i++) { in process() 87 inliers1.push_back(matched1[i]); in process()
|
/external/opencv3/doc/tutorials/features2d/akaze_matching/ |
D | akaze_matching.markdown | 77 matched1.push_back(kpts1[first.queryIdx]); 86 for(int i = 0; i < matched1.size(); i++) { 88 col.at<double>(0) = matched1[i].pt.x; 89 col.at<double>(1) = matched1[i].pt.y; 98 inliers1.push_back(matched1[i]);
|
/external/opencv3/doc/tutorials/features2d/akaze_tracking/ |
D | akaze_tracking.markdown | 83 matched1.push_back(first_kp[matches[i][0].queryIdx]); 93 homography = findHomography(Points(matched1), Points(matched2), 101 for(unsigned i = 0; i < matched1.size(); i++) { 104 inliers1.push_back(matched1[i]);
|