1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-17 15:26:00 +08:00

fixing return value of python bindings for cudafeatures2d methods

This commit is contained in:
Aleksandr Patsekin
2021-04-12 14:58:32 -07:00
parent 70f7ca4541
commit 69a5fdb8e5

View File

@@ -280,7 +280,7 @@ public:
the matches vector does not contain matches for fully masked-out query descriptors.
*/
CV_WRAP virtual void knnMatchConvert(InputArray gpu_matches,
std::vector< std::vector<DMatch> >& matches,
CV_OUT std::vector< std::vector<DMatch> >& matches,
bool compactResult = false) = 0;
//
@@ -364,7 +364,7 @@ public:
the matches vector does not contain matches for fully masked-out query descriptors.
*/
CV_WRAP virtual void radiusMatchConvert(InputArray gpu_matches,
std::vector< std::vector<DMatch> >& matches,
CV_OUT std::vector< std::vector<DMatch> >& matches,
bool compactResult = false) = 0;
};