Lines Matching refs:DescriptorMatcher
58 implement vector descriptor matchers inherit the DescriptorMatcher interface.
734 * DescriptorMatcher *
745 class CV_EXPORTS_W DescriptorMatcher : public Algorithm
748 virtual ~DescriptorMatcher();
796 second variant of the method, train descriptors collection that was set by DescriptorMatcher::add is
818 These extended variants of DescriptorMatcher::match methods find several best matches for each query
819 descriptor. The matches are returned in the distance increasing order. See DescriptorMatcher::match
897 virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const = 0;
910 CV_WRAP static Ptr<DescriptorMatcher> create( const String& descriptorMatcherType );
964 class CV_EXPORTS_W BFMatcher : public DescriptorMatcher
985 virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const;
1004 class CV_EXPORTS_W FlannBasedMatcher : public DescriptorMatcher
1021 virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const;
1237 const Ptr<DescriptorMatcher>& dmatcher );
1239 BOWImgDescriptorExtractor( const Ptr<DescriptorMatcher>& dmatcher );
1274 // compute() is not constant because DescriptorMatcher::match is not constant
1290 Ptr<DescriptorMatcher> dmatcher;