Lines Matching refs:InputArray
145 CV_WRAP virtual void detect( InputArray image,
147 InputArray mask=noArray() );
171 CV_WRAP virtual void compute( InputArray image,
190 CV_WRAP virtual void detectAndCompute( InputArray image, InputArray mask,
339 CV_WRAP virtual void detectRegions( InputArray image,
357 CV_EXPORTS void FAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
378 CV_EXPORTS void FAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
412 CV_EXPORTS void AGAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
430 CV_EXPORTS void AGAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
801 CV_WRAP void match( InputArray queryDescriptors, InputArray trainDescriptors,
802 CV_OUT std::vector<DMatch>& matches, InputArray mask=noArray() ) const;
822 CV_WRAP void knnMatch( InputArray queryDescriptors, InputArray trainDescriptors,
824 InputArray mask=noArray(), bool compactResult=false ) const;
845 void radiusMatch( InputArray queryDescriptors, InputArray trainDescriptors,
847 InputArray mask=noArray(), bool compactResult=false ) const;
856 CV_WRAP void match( InputArray queryDescriptors, CV_OUT std::vector<DMatch>& matches,
869 CV_WRAP void knnMatch( InputArray queryDescriptors, CV_OUT std::vector<std::vector<DMatch> >& matches, int k,
883 void radiusMatch( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
942 virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
944 virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
947 static bool isPossibleMatch( InputArray mask, int queryIdx, int trainIdx );
987 virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
989 virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
1027 virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
1029 virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
1079 CV_EXPORTS_W void drawKeypoints( InputArray image, const std::vector<KeyPoint>& keypoints, InputOutputArray outImage,
1104 CV_EXPORTS_W void drawMatches( InputArray img1, const std::vector<KeyPoint>& keypoints1,
1105 InputArray img2, const std::vector<KeyPoint>& keypoints2,
1111 CV_EXPORTS_AS(drawMatchesKnn) void drawMatches( InputArray img1, const std::vector<KeyPoint>& keypoints1,
1112 InputArray img2, const std::vector<KeyPoint>& keypoints2,
1263 void compute( InputArray image, std::vector<KeyPoint>& keypoints, OutputArray imgDescriptor,
1272 void compute( InputArray keypointDescriptors, OutputArray imgDescriptor,