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
1ea1cafa
Commit
1ea1cafa
authored
Jul 03, 2014
by
Ernest Galbrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added modification on cudaoptflow/include/opencv2/cudaoptflow.hpp
parent
b66a1318
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
cudaoptflow.hpp
modules/cudaoptflow/include/opencv2/cudaoptflow.hpp
+11
-3
No files found.
modules/cudaoptflow/include/opencv2/cudaoptflow.hpp
View file @
1ea1cafa
...
@@ -210,6 +210,11 @@ public:
...
@@ -210,6 +210,11 @@ public:
* In theory, it should have a small value in order to maintain both parts in correspondence.
* In theory, it should have a small value in order to maintain both parts in correspondence.
* The method is stable for a large range of values of this parameter.
* The method is stable for a large range of values of this parameter.
*/
*/
double
gamma
;
/**
* parameter for robustness
*/
double
theta
;
double
theta
;
/**
/**
...
@@ -241,12 +246,13 @@ public:
...
@@ -241,12 +246,13 @@ public:
bool
useInitialFlow
;
bool
useInitialFlow
;
private
:
private
:
void
procOneScale
(
const
GpuMat
&
I0
,
const
GpuMat
&
I1
,
GpuMat
&
u1
,
GpuMat
&
u2
);
void
procOneScale
(
const
GpuMat
&
I0
,
const
GpuMat
&
I1
,
GpuMat
&
u1
,
GpuMat
&
u2
,
GpuMat
&
u3
);
std
::
vector
<
GpuMat
>
I0s
;
std
::
vector
<
GpuMat
>
I0s
;
std
::
vector
<
GpuMat
>
I1s
;
std
::
vector
<
GpuMat
>
I1s
;
std
::
vector
<
GpuMat
>
u1s
;
std
::
vector
<
GpuMat
>
u1s
;
std
::
vector
<
GpuMat
>
u2s
;
std
::
vector
<
GpuMat
>
u2s
;
std
::
vector
<
GpuMat
>
u3s
;
GpuMat
I1x_buf
;
GpuMat
I1x_buf
;
GpuMat
I1y_buf
;
GpuMat
I1y_buf
;
...
@@ -261,7 +267,9 @@ private:
...
@@ -261,7 +267,9 @@ private:
GpuMat
p11_buf
;
GpuMat
p11_buf
;
GpuMat
p12_buf
;
GpuMat
p12_buf
;
GpuMat
p21_buf
;
GpuMat
p21_buf
;
GpuMat
p22_buf
;
GpuMat
p22_buf
;
GpuMat
p31_buf
;
GpuMat
p32_buf
;
GpuMat
diff_buf
;
GpuMat
diff_buf
;
GpuMat
norm_buf
;
GpuMat
norm_buf
;
...
...
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