File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/cudafeatures2d/include/opencv2 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ class CV_EXPORTS_W DescriptorMatcher : public cv::Algorithm
280
280
the matches vector does not contain matches for fully masked-out query descriptors.
281
281
*/
282
282
CV_WRAP virtual void knnMatchConvert (InputArray gpu_matches,
283
- std::vector< std::vector<DMatch> >& matches,
283
+ CV_OUT std::vector< std::vector<DMatch> >& matches,
284
284
bool compactResult = false ) = 0;
285
285
286
286
//
@@ -364,7 +364,7 @@ class CV_EXPORTS_W DescriptorMatcher : public cv::Algorithm
364
364
the matches vector does not contain matches for fully masked-out query descriptors.
365
365
*/
366
366
CV_WRAP virtual void radiusMatchConvert (InputArray gpu_matches,
367
- std::vector< std::vector<DMatch> >& matches,
367
+ CV_OUT std::vector< std::vector<DMatch> >& matches,
368
368
bool compactResult = false ) = 0;
369
369
};
370
370
You can’t perform that action at this time.
0 commit comments