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
52a13622
Commit
52a13622
authored
Nov 14, 2012
by
LeonidBeynenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified documentation for calcOpticalFlowSF.
parent
02646427
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
motion_analysis_and_object_tracking.rst
modules/video/doc/motion_analysis_and_object_tracking.rst
+5
-7
No files found.
modules/video/doc/motion_analysis_and_object_tracking.rst
View file @
52a13622
...
...
@@ -601,17 +601,15 @@ calcOpticalFlowSF
-----------------
Calculate an optical flow using "SimpleFlow" algorithm.
.. ocv:function:: void calcOpticalFlowSF(
Mat& from, Mat& to, Mat&
flow, int layers, int averaging_block_size, int max_flow )
.. ocv:function:: void calcOpticalFlowSF(
InputArray from, InputArray to, OutputArray
flow, int layers, int averaging_block_size, int max_flow )
.. ocv:function:: calcOpticalFlowSF(
Mat& from, Mat& to, Mat&
flow, int layers, int averaging_block_size, int max_flow, double sigma_dist, double sigma_color, int postprocess_window, double sigma_dist_fix, double sigma_color_fix, double occ_thr, int upscale_averaging_radius, double upscale_sigma_dist, double upscale_sigma_color, double speed_up_thr )
.. ocv:function:: calcOpticalFlowSF(
InputArray from, InputArray to, OutputArray
flow, int layers, int averaging_block_size, int max_flow, double sigma_dist, double sigma_color, int postprocess_window, double sigma_dist_fix, double sigma_color_fix, double occ_thr, int upscale_averaging_radius, double upscale_sigma_dist, double upscale_sigma_color, double speed_up_thr )
:param prev: First 8-bit 3-channel image.
:param next: Second 8-bit 3-channel image
:param next: Second 8-bit 3-channel image
of the same size as ``prev``
:param flowX: X-coordinate of estimated flow
:param flowY: Y-coordinate of estimated flow
:param flow: computed flow image that has the same size as ``prev`` and type ``CV_32FC2``
:param layers: Number of layers
...
...
@@ -631,7 +629,7 @@ Calculate an optical flow using "SimpleFlow" algorithm.
:param occ_thr: threshold for detecting occlusions
:param upscale_averaging_radiu
d
: window size for bilateral upscale operation
:param upscale_averaging_radiu
s
: window size for bilateral upscale operation
:param upscale_sigma_dist: spatial sigma for bilateral upscale operation
...
...
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