Home | History | Annotate | Download | only in src

Lines Matching refs:InputArray

63 static bool ocl_matchSingle(InputArray query, InputArray train,
161 static bool ocl_knnMatchSingle(InputArray query, InputArray train, UMat &trainIdx,
273 static bool ocl_radiusMatchSingle(InputArray query, InputArray train,
563 void DescriptorMatcher::match( InputArray queryDescriptors, InputArray trainDescriptors,
564 std::vector<DMatch>& matches, InputArray mask ) const
571 void DescriptorMatcher::knnMatch( InputArray queryDescriptors, InputArray trainDescriptors,
573 InputArray mask, bool compactResult ) const
580 void DescriptorMatcher::radiusMatch( InputArray queryDescriptors, InputArray trainDescriptors,
581 std::vector<std::vector<DMatch> >& matches, float maxDistance, InputArray mask,
589 void DescriptorMatcher::match( InputArray queryDescriptors, std::vector<DMatch>& matches, InputArrayOfArrays masks )
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,
654 bool DescriptorMatcher::isPossibleMatch( InputArray _mask, int queryIdx, int trainIdx )
696 static bool ocl_match(InputArray query, InputArray _train, std::vector< std::vector<DMatch> > &matches, int dstType)
706 static bool ocl_knnMatch(InputArray query, InputArray _train, std::vector< std::vector<DMatch> > &matches, int k, int dstType, bool compactResult)
718 void BFMatcher::knnMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches, int knn,
854 static bool ocl_radiusMatch(InputArray query, InputArray _train, std::vector< std::vector<DMatch> > &matches,
865 void BFMatcher::radiusMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches,
1294 void FlannBasedMatcher::knnMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches, int knn,
1305 void FlannBasedMatcher::radiusMatchImpl( InputArray _queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,