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
a52979c3
Commit
a52979c3
authored
May 14, 2014
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exposed TVL1 optical flow to python
parent
2756ae20
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tracking.hpp
modules/video/include/opencv2/video/tracking.hpp
+4
-4
No files found.
modules/video/include/opencv2/video/tracking.hpp
View file @
a52979c3
...
...
@@ -177,11 +177,11 @@ public:
class
CV_EXPORTS
DenseOpticalFlow
:
public
Algorithm
class
CV_EXPORTS
_W
DenseOpticalFlow
:
public
Algorithm
{
public
:
virtual
void
calc
(
InputArray
I0
,
InputArray
I1
,
InputOutputArray
flow
)
=
0
;
virtual
void
collectGarbage
()
=
0
;
CV_WRAP
virtual
void
calc
(
InputArray
I0
,
InputArray
I1
,
InputOutputArray
flow
)
=
0
;
CV_WRAP
virtual
void
collectGarbage
()
=
0
;
};
// Implementation of the Zach, Pock and Bischof Dual TV-L1 Optical Flow method
...
...
@@ -189,7 +189,7 @@ public:
// see reference:
// [1] C. Zach, T. Pock and H. Bischof, "A Duality Based Approach for Realtime TV-L1 Optical Flow".
// [2] Javier Sanchez, Enric Meinhardt-Llopis and Gabriele Facciolo. "TV-L1 Optical Flow Estimation".
CV_EXPORTS
Ptr
<
DenseOpticalFlow
>
createOptFlow_DualTVL1
();
CV_EXPORTS
_W
Ptr
<
DenseOpticalFlow
>
createOptFlow_DualTVL1
();
}
// cv
...
...
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