Searched refs:dmatcher (Results 1 - 3 of 3) sorted by relevance

/external/opencv3/modules/features2d/test/
H A Dtest_matchers_algorithmic.cpp58 badPart(_badPart), name(_name), dmatcher(_dmatcher)
75 Ptr<DescriptorMatcher> dmatcher; member in class:CV_DescriptorMatcherTest
83 assert( !dmatcher.empty() );
91 dmatcher->match( queryDescriptors, trainDescriptors, matches, mask );
101 dmatcher->knnMatch( queryDescriptors, trainDescriptors, vmatches, 2, mask );
111 dmatcher->radiusMatch( queryDescriptors, trainDescriptors, vmatches, 10.f, mask );
121 dmatcher->add( trainDescriptorCollection );
131 dmatcher->match( queryDescriptors, matches, masks );
141 dmatcher->knnMatch( queryDescriptors, vmatches, 2, masks );
151 dmatcher
[all...]
/external/opencv3/modules/features2d/src/
H A Dbagofwords.cpp121 dextractor(_dextractor), dmatcher(_dmatcher)
125 dmatcher(_dmatcher)
133 dmatcher->clear();
135 dmatcher->add( std::vector<Mat>(1, vocabulary) );
181 dmatcher->match( keypointDescriptors, matches );
/external/opencv3/modules/features2d/include/opencv2/
H A Dfeatures2d.hpp1233 @param dmatcher Descriptor matcher that is used to find the nearest word of the trained vocabulary
1237 const Ptr<DescriptorMatcher>& dmatcher );
1239 BOWImgDescriptorExtractor( const Ptr<DescriptorMatcher>& dmatcher );
1290 Ptr<DescriptorMatcher> dmatcher; member in class:cv::BOWImgDescriptorExtractor

Completed in 157 milliseconds