Searched refs:descriptors1 (Results 1 – 7 of 7) sorted by relevance
/external/opencv3/modules/shape/src/ |
D | hist_cost.cpp | 66 …virtual void buildCostMatrix(InputArray descriptors1, InputArray descriptors2, OutputArray costMat… 128 Mat descriptors1=_descriptors1.getMat(); in buildCostMatrix() local 130 int costrows = std::max(descriptors1.rows, descriptors2.rows)+nDummies; in buildCostMatrix() 136 cv::Mat scd1 = descriptors1.clone(); in buildCostMatrix() 191 …virtual void buildCostMatrix(InputArray descriptors1, InputArray descriptors2, OutputArray costMat… 253 Mat descriptors1=_descriptors1.getMat(); in buildCostMatrix() local 255 int costrows = std::max(descriptors1.rows, descriptors2.rows)+nDummies; in buildCostMatrix() 260 cv::Mat scd1=descriptors1.clone(); in buildCostMatrix() 327 …virtual void buildCostMatrix(InputArray descriptors1, InputArray descriptors2, OutputArray costMat… 374 Mat descriptors1=_descriptors1.getMat(); in buildCostMatrix() local [all …]
|
D | scd_def.hpp | 115 …void matchDescriptors(cv::Mat& descriptors1, cv::Mat& descriptors2, std::vector<cv::DMatch>& matc… 124 void buildCostMatrix(const cv::Mat& descriptors1, const cv::Mat& descriptors2,
|
D | sc_dis.cpp | 480 void SCDMatcher::matchDescriptors(cv::Mat &descriptors1, cv::Mat &descriptors2, std::vector<cv::DMa… in matchDescriptors() argument 487 buildCostMatrix(descriptors1, descriptors2, costMat, comparer); in matchDescriptors() 490 hungarian(costMat, matches, inliers1, inliers2, descriptors1.rows, descriptors2.rows); in matchDescriptors() 493 void SCDMatcher::buildCostMatrix(const cv::Mat &descriptors1, const cv::Mat &descriptors2, in buildCostMatrix() argument 496 comparer->buildCostMatrix(descriptors1, descriptors2, costMatrix); in buildCostMatrix()
|
/external/opencv3/doc/tutorials/features2d/detection_of_planar_objects/ |
D | detection_of_planar_objects.markdown | 19 Mat descriptors1; 20 surf->detectAndCompute(img1, Mat(), keypoints1, descriptors1); 29 matcher.match(descriptors1, descriptors2, matches);
|
/external/opencv3/samples/gpu/ |
D | surf_keypoint_matcher.cpp | 71 vector<float> descriptors1, descriptors2; in main() local 74 surf.downloadDescriptors(descriptors1GPU, descriptors1); in main()
|
/external/opencv3/modules/features2d/test/ |
D | test_rotation_and_scale_invariance.cpp | 346 Mat descriptors1; in run() local 347 descriptorExtractor->compute(image1, keypoints1, descriptors1); in run() 350 bfmatcher.match(descriptors0, descriptors1, descMatches); in run() 549 Mat descriptors1; in run() local 550 descriptorExtractor->compute(image1, keypoints1, descriptors1); in run() 553 bfmatcher.match(descriptors0, descriptors1, descMatches); in run()
|
/external/opencv3/modules/shape/include/opencv2/shape/ |
D | hist_cost.hpp | 60 …CV_WRAP virtual void buildCostMatrix(InputArray descriptors1, InputArray descriptors2, OutputArray…
|