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
02646427
Commit
02646427
authored
Nov 01, 2012
by
LeonidBeynenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed arguments of the function calcOpticalFlowSF.
parent
66b90d19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
15 deletions
+20
-15
tracking.hpp
modules/video/include/opencv2/video/tracking.hpp
+6
-6
simpleflow.cpp
modules/video/src/simpleflow.cpp
+14
-9
No files found.
modules/video/include/opencv2/video/tracking.hpp
View file @
02646427
...
...
@@ -328,16 +328,16 @@ CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst,
bool
fullAffine
);
//! computes dense optical flow using Simple Flow algorithm
CV_EXPORTS_W
void
calcOpticalFlowSF
(
Mat
&
from
,
Mat
&
to
,
Mat
&
flow
,
CV_EXPORTS_W
void
calcOpticalFlowSF
(
InputArray
from
,
InputArray
to
,
OutputArray
flow
,
int
layers
,
int
averaging_block_size
,
int
max_flow
);
CV_EXPORTS_W
void
calcOpticalFlowSF
(
Mat
&
from
,
Mat
&
to
,
Mat
&
flow
,
CV_EXPORTS_W
void
calcOpticalFlowSF
(
InputArray
from
,
InputArray
to
,
OutputArray
flow
,
int
layers
,
int
averaging_block_size
,
int
max_flow
,
...
...
modules/video/src/simpleflow.cpp
View file @
02646427
...
...
@@ -447,7 +447,7 @@ static void extrapolateFlow(Mat& flow,
}
}
static
void
buildPyramidWithResizeMethod
(
Mat
&
src
,
static
void
buildPyramidWithResizeMethod
(
const
Mat
&
src
,
vector
<
Mat
>&
pyramid
,
int
layers
,
int
interpolation_type
)
{
...
...
@@ -464,9 +464,9 @@ static void buildPyramidWithResizeMethod(Mat& src,
}
}
CV_EXPORTS_W
void
calcOpticalFlowSF
(
Mat
&
from
,
Mat
&
to
,
Mat
&
resulted_flow
,
CV_EXPORTS_W
void
calcOpticalFlowSF
(
InputArray
_
from
,
InputArray
_
to
,
OutputArray
_
resulted_flow
,
int
layers
,
int
averaging_radius
,
int
max_flow
,
...
...
@@ -479,7 +479,11 @@ CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,
int
upscale_averaging_radius
,
double
upscale_sigma_dist
,
double
upscale_sigma_color
,
double
speed_up_thr
)
{
double
speed_up_thr
)
{
Mat
from
=
_from
.
getMat
();
Mat
to
=
_to
.
getMat
();
vector
<
Mat
>
pyr_from_images
;
vector
<
Mat
>
pyr_to_images
;
...
...
@@ -632,14 +636,15 @@ CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,
GaussianBlur
(
flow
,
flow
,
Size
(
3
,
3
),
5
);
resulted_flow
=
Mat
(
flow
.
size
(),
CV_32FC2
);
_resulted_flow
.
create
(
flow
.
size
(),
CV_32FC2
);
Mat
resulted_flow
=
_resulted_flow
.
getMat
();
int
from_to
[]
=
{
0
,
1
,
1
,
0
};
mixChannels
(
&
flow
,
1
,
&
resulted_flow
,
1
,
from_to
,
2
);
}
CV_EXPORTS_W
void
calcOpticalFlowSF
(
Mat
&
from
,
Mat
&
to
,
Mat
&
flow
,
CV_EXPORTS_W
void
calcOpticalFlowSF
(
InputArray
from
,
InputArray
to
,
OutputArray
flow
,
int
layers
,
int
averaging_block_size
,
int
max_flow
)
{
...
...
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