From: Alexander Mordvintsev Date: Mon, 11 Jul 2011 07:51:15 +0000 (+0000) Subject: made boundingRects argument of segmentMotion CV_OUT X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~6683 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=848fa23a077717e5971c1f3e5d3a59703a54e9a3;p=platform%2Fupstream%2Fopencv.git made boundingRects argument of segmentMotion CV_OUT updated documentation --- diff --git a/modules/video/doc/motion_analysis_and_object_tracking.rst b/modules/video/doc/motion_analysis_and_object_tracking.rst index d27c20b..ba3e44c 100644 --- a/modules/video/doc/motion_analysis_and_object_tracking.rst +++ b/modules/video/doc/motion_analysis_and_object_tracking.rst @@ -322,7 +322,7 @@ Splits a motion history image into a few parts corresponding to separate indepen .. ocv:function:: void segmentMotion(InputArray mhi, OutputArray segmask, vector& boundingRects, double timestamp, double segThresh) -.. ocv:pyfunction:: cv2.segmentMotion(mhi, boundingRects, timestamp, segThresh[, segmask]) -> segmask +.. ocv:pyfunction:: cv2.segmentMotion(mhi, timestamp, segThresh[, segmask]) -> segmask, boundingRects .. ocv:cfunction:: CvSeq* cvSegmentMotion( const CvArr* mhi, CvArr* segMask, CvMemStorage* storage, double timestamp, double segThresh ) .. ocv:pyoldfunction:: cv.SegmentMotion(mhi, segMask, storage, timestamp, segThresh)-> None diff --git a/modules/video/include/opencv2/video/tracking.hpp b/modules/video/include/opencv2/video/tracking.hpp index bcf969c..6a4b1d5 100644 --- a/modules/video/include/opencv2/video/tracking.hpp +++ b/modules/video/include/opencv2/video/tracking.hpp @@ -259,7 +259,7 @@ CV_EXPORTS_W double calcGlobalOrientation( InputArray orientation, InputArray ma double duration ); CV_EXPORTS_W void segmentMotion(InputArray mhi, OutputArray segmask, - vector& boundingRects, + CV_OUT vector& boundingRects, double timestamp, double segThresh); //! updates the object tracking window using CAMSHIFT algorithm