mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-19 19:44:14 +08:00
fixing return value of python bindings for cudafeatures2d methods
This commit is contained in:
@@ -280,7 +280,7 @@ public:
|
|||||||
the matches vector does not contain matches for fully masked-out query descriptors.
|
the matches vector does not contain matches for fully masked-out query descriptors.
|
||||||
*/
|
*/
|
||||||
CV_WRAP virtual void knnMatchConvert(InputArray gpu_matches,
|
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;
|
bool compactResult = false) = 0;
|
||||||
|
|
||||||
//
|
//
|
||||||
@@ -364,7 +364,7 @@ public:
|
|||||||
the matches vector does not contain matches for fully masked-out query descriptors.
|
the matches vector does not contain matches for fully masked-out query descriptors.
|
||||||
*/
|
*/
|
||||||
CV_WRAP virtual void radiusMatchConvert(InputArray gpu_matches,
|
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;
|
bool compactResult = false) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user