Searched refs:tempMatcher (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/features2d/src/ |
D | matchers.cpp | 566 Ptr<DescriptorMatcher> tempMatcher = clone(true); in match() local 567 tempMatcher->add(trainDescriptors); in match() 568 tempMatcher->match( queryDescriptors, matches, std::vector<Mat>(1, mask.getMat()) ); in match() 575 Ptr<DescriptorMatcher> tempMatcher = clone(true); in knnMatch() local 576 tempMatcher->add(trainDescriptors); in knnMatch() 577 …tempMatcher->knnMatch( queryDescriptors, matches, knn, std::vector<Mat>(1, mask.getMat()), compact… in knnMatch() 584 Ptr<DescriptorMatcher> tempMatcher = clone(true); in radiusMatch() local 585 tempMatcher->add(trainDescriptors); in radiusMatch() 586 …tempMatcher->radiusMatch( queryDescriptors, matches, maxDistance, std::vector<Mat>(1, mask.getMat(… in radiusMatch()
|