From 297e6d0b7380726812f2ef4e2d2432789b5c5538 Mon Sep 17 00:00:00 2001 From: jackculpepper Date: Thu, 4 Apr 2013 00:51:52 -0700 Subject: [PATCH] mark multiple return arguments for python bindings --- modules/objdetect/include/opencv2/objdetect.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(), -- 2.7.4