Home | History | Annotate | Download | only in src

Lines Matching refs:DescriptorMatcher

395 *                                      DescriptorMatcher                                 *
397 DescriptorMatcher::DescriptorCollection::DescriptorCollection()
400 DescriptorMatcher::DescriptorCollection::DescriptorCollection( const DescriptorCollection& collection )
406 DescriptorMatcher::DescriptorCollection::~DescriptorCollection()
409 void DescriptorMatcher::DescriptorCollection::set( const std::vector<Mat>& descriptors )
458 DescriptorMatcher::DescriptorCollection::clear()
464 const Mat DescriptorMatcher::DescriptorCollection::getDescriptor( int imgIdx, int localDescIdx ) const
473 const Mat& DescriptorMatcher::DescriptorCollection::getDescriptors() const
478 const Mat DescriptorMatcher::DescriptorCollection::getDescriptor( int globalDescIdx ) const
484 void DescriptorMatcher::DescriptorCollection::getLocalIdx( int globalDescIdx, int& imgIdx, int& localDescIdx ) const
493 int DescriptorMatcher::DescriptorCollection::size() const
499 * DescriptorMatcher
513 DescriptorMatcher::~DescriptorMatcher()
516 void DescriptorMatcher::add( InputArrayOfArrays _descriptors )
544 const std::vector<Mat>& DescriptorMatcher::getTrainDescriptors() const
549 void DescriptorMatcher::clear()
555 bool DescriptorMatcher::empty() const
560 void DescriptorMatcher::train()
563 void DescriptorMatcher::match( InputArray queryDescriptors, InputArray trainDescriptors,
566 Ptr<DescriptorMatcher> tempMatcher = clone(true);
571 void DescriptorMatcher::knnMatch( InputArray queryDescriptors, InputArray trainDescriptors,
575 Ptr<DescriptorMatcher> tempMatcher = clone(true);
580 void DescriptorMatcher::radiusMatch( InputArray queryDescriptors, InputArray trainDescriptors,
584 Ptr<DescriptorMatcher> tempMatcher = clone(true);
589 void DescriptorMatcher::match( InputArray queryDescriptors, std::vector<DMatch>& matches, InputArrayOfArrays masks )
596 void DescriptorMatcher::checkMasks( InputArrayOfArrays _masks, int queryDescriptorsCount ) const
619 void DescriptorMatcher::knnMatch( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int knn,
633 void DescriptorMatcher::radiusMatch( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
648 void DescriptorMatcher::read( const FileNode& )
651 void DescriptorMatcher::write( FileStorage& ) const
654 bool DescriptorMatcher::isPossibleMatch( InputArray _mask, int queryIdx, int trainIdx )
660 bool DescriptorMatcher::isMaskedOut( InputArrayOfArrays _masks, int queryIdx )
684 Ptr<DescriptorMatcher> BFMatcher::clone( bool emptyTrainData ) const
975 * Factory function for DescriptorMatcher creating
977 Ptr<DescriptorMatcher> DescriptorMatcher::create( const String& descriptorMatcherType )
979 Ptr<DescriptorMatcher> dm;
1024 DescriptorMatcher::add( _descriptors );
1036 DescriptorMatcher::clear();
1254 Ptr<DescriptorMatcher> FlannBasedMatcher::clone( bool emptyTrainData ) const