Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
848fa23a
Commit
848fa23a
authored
Jul 11, 2011
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made boundingRects argument of segmentMotion CV_OUT
updated documentation
parent
c9d9d1ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
motion_analysis_and_object_tracking.rst
modules/video/doc/motion_analysis_and_object_tracking.rst
+1
-1
tracking.hpp
modules/video/include/opencv2/video/tracking.hpp
+1
-1
No files found.
modules/video/doc/motion_analysis_and_object_tracking.rst
View file @
848fa23a
...
@@ -322,7 +322,7 @@ Splits a motion history image into a few parts corresponding to separate indepen
...
@@ -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<Rect>& boundingRects, double timestamp, double segThresh)
.. ocv:function:: void segmentMotion(InputArray mhi, OutputArray segmask, vector<Rect>& 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:cfunction:: CvSeq* cvSegmentMotion( const CvArr* mhi, CvArr* segMask, CvMemStorage* storage, double timestamp, double segThresh )
.. ocv:pyoldfunction:: cv.SegmentMotion(mhi, segMask, storage, timestamp, segThresh)-> None
.. ocv:pyoldfunction:: cv.SegmentMotion(mhi, segMask, storage, timestamp, segThresh)-> None
...
...
modules/video/include/opencv2/video/tracking.hpp
View file @
848fa23a
...
@@ -259,7 +259,7 @@ CV_EXPORTS_W double calcGlobalOrientation( InputArray orientation, InputArray ma
...
@@ -259,7 +259,7 @@ CV_EXPORTS_W double calcGlobalOrientation( InputArray orientation, InputArray ma
double
duration
);
double
duration
);
CV_EXPORTS_W
void
segmentMotion
(
InputArray
mhi
,
OutputArray
segmask
,
CV_EXPORTS_W
void
segmentMotion
(
InputArray
mhi
,
OutputArray
segmask
,
vector
<
Rect
>&
boundingRects
,
CV_OUT
vector
<
Rect
>&
boundingRects
,
double
timestamp
,
double
segThresh
);
double
timestamp
,
double
segThresh
);
//! updates the object tracking window using CAMSHIFT algorithm
//! updates the object tracking window using CAMSHIFT algorithm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment