From: jackculpepper Date: Thu, 4 Apr 2013 07:51:52 +0000 (-0700) Subject: mark multiple return arguments for python bindings X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~3935^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=297e6d0b7380726812f2ef4e2d2432789b5c5538;p=platform%2Fupstream%2Fopencv.git mark multiple return arguments for python bindings --- diff --git a/modules/objdetect/include/opencv2/objdetect.hpp b/modules/objdetect/include/opencv2/objdetect.hpp index 50bfd05..bde149e 100644 --- a/modules/objdetect/include/opencv2/objdetect.hpp +++ b/modules/objdetect/include/opencv2/objdetect.hpp @@ -387,8 +387,8 @@ public: CV_WRAP virtual void detectMultiScale( const Mat& image, CV_OUT std::vector& objects, - std::vector& rejectLevels, - std::vector& levelWeights, + CV_OUT std::vector& rejectLevels, + CV_OUT std::vector& levelWeights, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(),