Home
last modified time | relevance | path

Searched refs:keypoints2 (Results 1 – 16 of 16) sorted by relevance

/external/opencv3/modules/features2d/test/
Dtest_agast.cpp78 vector<KeyPoint> keypoints2; in run() local
80 AGAST(gray2, keypoints2, (type > 0 ? 30 : 20), true, type); in run()
88 for(size_t i = 0; i < keypoints2.size(); ++i) in run()
90 const KeyPoint& kp = keypoints2[i]; in run()
95 Mat kps2(1, (int)(keypoints2.size() * sizeof(KeyPoint)), CV_8U, &keypoints2[0]); in run()
Dtest_fast.cpp78 vector<KeyPoint> keypoints2; in run() local
80 FAST(gray2, keypoints2, (type > 0 ? 30 : 20), true, type); in run()
88 for(size_t i = 0; i < keypoints2.size(); ++i) in run()
90 const KeyPoint& kp = keypoints2[i]; in run()
95 Mat kps2(1, (int)(keypoints2.size() * sizeof(KeyPoint)), CV_8U, &keypoints2[0]); in run()
Dtest_brisk.cpp78 vector<KeyPoint> keypoints2; in run() local
80 detector->detect(image2, keypoints2); in run()
88 for(size_t i = 0; i < keypoints2.size(); ++i) in run()
90 const KeyPoint& kp = keypoints2[i]; in run()
/external/opencv3/modules/java/src/
Dfeatures2d+Features2d.java52 …rawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch mat… in drawMatches() argument
55 Mat keypoints2_mat = keypoints2; in drawMatches()
64 …rawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch mat… in drawMatches() argument
67 Mat keypoints2_mat = keypoints2; in drawMatches()
80 …awMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatc… in drawMatches2() argument
83 Mat keypoints2_mat = keypoints2; in drawMatches2()
94 …awMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatc… in drawMatches2() argument
97 Mat keypoints2_mat = keypoints2; in drawMatches2()
Dfeatures2d.cpp348 std::vector<KeyPoint> keypoints2; in Java_org_opencv_features2d_Features2d_drawMatches_10() local
350 Mat_to_vector_KeyPoint( keypoints2_mat, keypoints2 ); in Java_org_opencv_features2d_Features2d_drawMatches_10()
362 …cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg, matchColor, singlePointC… in Java_org_opencv_features2d_Features2d_drawMatches_10()
385 std::vector<KeyPoint> keypoints2; in Java_org_opencv_features2d_Features2d_drawMatches_11() local
387 Mat_to_vector_KeyPoint( keypoints2_mat, keypoints2 ); in Java_org_opencv_features2d_Features2d_drawMatches_11()
394 cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg ); in Java_org_opencv_features2d_Features2d_drawMatches_11()
421 std::vector<KeyPoint> keypoints2; in Java_org_opencv_features2d_Features2d_drawMatches2_10() local
423 Mat_to_vector_KeyPoint( keypoints2_mat, keypoints2 ); in Java_org_opencv_features2d_Features2d_drawMatches2_10()
435 …cv::drawMatches( img1, keypoints1, img2, keypoints2, matches1to2, outImg, matchColor, singlePointC… in Java_org_opencv_features2d_Features2d_drawMatches2_10()
458 std::vector<KeyPoint> keypoints2; in Java_org_opencv_features2d_Features2d_drawMatches2_11() local
[all …]
/external/opencv3/modules/features2d/misc/java/test/
DFASTFeatureDetectorTest.java95 MatOfKeyPoint keypoints2 = new MatOfKeyPoint(); in testRead() local
97 detector.detect(grayChess, keypoints2); in testRead()
99 assertTrue(keypoints2.total() <= keypoints1.total()); in testRead()
117 MatOfKeyPoint keypoints2 = new MatOfKeyPoint(); in testReadYml() local
119 detector.detect(grayChess, keypoints2); in testReadYml()
121 assertTrue(keypoints2.total() <= keypoints1.total()); in testReadYml()
DSTARFeatureDetectorTest.java107 MatOfKeyPoint keypoints2 = new MatOfKeyPoint(); in testRead() local
108 detector.detect(img, keypoints2); in testRead()
110 assertTrue(keypoints2.total() <= keypoints1.total()); in testRead()
DSURFFeatureDetectorTest.java143 MatOfKeyPoint keypoints2 = new MatOfKeyPoint(); in testRead() local
144 detector.detect(cross, keypoints2); in testRead()
146 assertTrue(keypoints2.total() <= keypoints1.total()); in testRead()
/external/opencv3/modules/features2d/src/
Ddraw.cpp124 InputArray img2, const std::vector<KeyPoint>& keypoints2, in _prepareImgAndDrawKeypoints() argument
165 …drawKeypoints( _outImg2, keypoints2, _outImg2, singlePointColor, flags | DrawMatchesFlags::DRAW_OV… in _prepareImgAndDrawKeypoints()
190 InputArray img2, const std::vector<KeyPoint>& keypoints2, in drawMatches() argument
199 _prepareImgAndDrawKeypoints( img1, keypoints1, img2, keypoints2, in drawMatches()
210 CV_Assert(i2 >= 0 && i2 < static_cast<int>(keypoints2.size())); in drawMatches()
212 const KeyPoint &kp1 = keypoints1[i1], &kp2 = keypoints2[i2]; in drawMatches()
219 InputArray img2, const std::vector<KeyPoint>& keypoints2, in drawMatches() argument
228 _prepareImgAndDrawKeypoints( img1, keypoints1, img2, keypoints2, in drawMatches()
240 const KeyPoint &kp1 = keypoints1[i1], &kp2 = keypoints2[i2]; in drawMatches()
Devaluation.cpp396 std::vector<EllipticKeyPoint> keypoints1, keypoints2, keypoints1t, keypoints2t; in calculateRepeatability() local
398 EllipticKeyPoint::convert( _keypoints2, keypoints2 ); in calculateRepeatability()
403 EllipticKeyPoint::calcProjection( keypoints2, H2to1, keypoints2t ); in calculateRepeatability()
415 filterEllipticKeyPointsByImageSize( keypoints2, sz2 ); in calculateRepeatability()
460 std::vector<KeyPoint> *keypoints1, *keypoints2, buf1, buf2; in evaluateFeatureDetector() local
462 keypoints2 = _keypoints2 != 0 ? _keypoints2 : &buf2; in evaluateFeatureDetector()
464 if( (keypoints1->empty() || keypoints2->empty()) && !fdetector ) in evaluateFeatureDetector()
469 if( keypoints2->empty() ) in evaluateFeatureDetector()
470 fdetector->detect( img2, *keypoints2 ); in evaluateFeatureDetector()
472 …calculateRepeatability( img1, img2, H1to2, *keypoints1, *keypoints2, repeatability, correspCount ); in evaluateFeatureDetector()
/external/opencv3/samples/gpu/
Dsurf_keypoint_matcher.cpp70 vector<KeyPoint> keypoints1, keypoints2; in main() local
73 surf.downloadKeypoints(keypoints2GPU, keypoints2); in main()
79 drawMatches(Mat(img1), keypoints1, Mat(img2), keypoints2, matches, img_matches); in main()
/external/opencv3/doc/tutorials/features2d/detection_of_planar_objects/
Ddetection_of_planar_objects.markdown36 drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches);
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp1105 InputArray img2, const std::vector<KeyPoint>& keypoints2,
1112 InputArray img2, const std::vector<KeyPoint>& keypoints2,
1124 … std::vector<KeyPoint>* keypoints1, std::vector<KeyPoint>* keypoints2,
/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_manual.hpp417 const Mat& img2, const std::vector<KeyPoint>& keypoints2,
423 const Mat& img2, const std::vector<KeyPoint>& keypoints2,
/external/opencv3/modules/ts/src/
Dcuda_test.cpp520 …td::vector<cv::KeyPoint>& keypoints1, const std::vector<cv::KeyPoint>& keypoints2, const std::vect… in getMatchedPointsCount() argument
529 const cv::KeyPoint& p2 = keypoints2[m.trainIdx]; in getMatchedPointsCount()
/external/opencv3/modules/ts/include/opencv2/ts/
Dcuda_test.hpp335 …td::vector<cv::KeyPoint>& keypoints1, const std::vector<cv::KeyPoint>& keypoints2, const std::vect…