Skip to content

Commit 6d146a0

Browse files
committed
Merge pull request #2922 from apatsekin:fix-cudafeatures2d-python-bind
2 parents 70f7ca4 + 69a5fdb commit 6d146a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ class CV_EXPORTS_W DescriptorMatcher : public cv::Algorithm
280280
the matches vector does not contain matches for fully masked-out query descriptors.
281281
*/
282282
CV_WRAP virtual void knnMatchConvert(InputArray gpu_matches,
283-
std::vector< std::vector<DMatch> >& matches,
283+
CV_OUT std::vector< std::vector<DMatch> >& matches,
284284
bool compactResult = false) = 0;
285285

286286
//
@@ -364,7 +364,7 @@ class CV_EXPORTS_W DescriptorMatcher : public cv::Algorithm
364364
the matches vector does not contain matches for fully masked-out query descriptors.
365365
*/
366366
CV_WRAP virtual void radiusMatchConvert(InputArray gpu_matches,
367-
std::vector< std::vector<DMatch> >& matches,
367+
CV_OUT std::vector< std::vector<DMatch> >& matches,
368368
bool compactResult = false) = 0;
369369
};
370370

0 commit comments

Comments
 (0)