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
e213af6c
Commit
e213af6c
authored
Jul 29, 2013
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Jul 29, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1190 from melody-rain:2.4_add_farneback_to_superres
parents
d945b20d
027b8021
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
3 deletions
+78
-3
optical_flow.hpp
modules/superres/include/opencv2/superres/optical_flow.hpp
+1
-0
perf_superres_ocl.cpp
modules/superres/perf/perf_superres_ocl.cpp
+2
-3
optical_flow.cpp
modules/superres/src/optical_flow.cpp
+75
-0
No files found.
modules/superres/include/opencv2/superres/optical_flow.hpp
View file @
e213af6c
...
...
@@ -58,6 +58,7 @@ namespace cv
CV_EXPORTS
Ptr
<
DenseOpticalFlowExt
>
createOptFlow_Farneback
();
CV_EXPORTS
Ptr
<
DenseOpticalFlowExt
>
createOptFlow_Farneback_GPU
();
CV_EXPORTS
Ptr
<
DenseOpticalFlowExt
>
createOptFlow_Farneback_OCL
();
CV_EXPORTS
Ptr
<
DenseOpticalFlowExt
>
createOptFlow_Simple
();
...
...
modules/superres/perf/perf_superres_ocl.cpp
View file @
e213af6c
...
...
@@ -46,7 +46,6 @@
#include "opencv2/ocl/ocl.hpp"
using
namespace
std
;
using
namespace
std
::
tr1
;
using
namespace
testing
;
using
namespace
perf
;
using
namespace
cv
;
...
...
@@ -113,8 +112,8 @@ PERF_TEST_P(Size_MatType, SuperResolution_BTVL1_OCL,
declare
.
time
(
5
*
60
);
const
Size
size
=
get
<
0
>
(
GetParam
());
const
int
type
=
get
<
1
>
(
GetParam
());
const
Size
size
=
std
::
tr1
::
get
<
0
>
(
GetParam
());
const
int
type
=
std
::
tr1
::
get
<
1
>
(
GetParam
());
Mat
frame
(
size
,
type
);
declare
.
in
(
frame
,
WARMUP_RNG
);
...
...
modules/superres/src/optical_flow.cpp
View file @
e213af6c
...
...
@@ -910,4 +910,78 @@ Ptr<DenseOpticalFlowExt> cv::superres::createOptFlow_DualTVL1_OCL()
return
new
DualTVL1_OCL
;
}
///////////////////////////////////////////////////////////////////
// FarneBack
namespace
{
class
FarneBack_OCL
:
public
oclOpticalFlow
{
public
:
AlgorithmInfo
*
info
()
const
;
FarneBack_OCL
();
void
collectGarbage
();
protected
:
void
impl
(
const
cv
::
ocl
::
oclMat
&
input0
,
const
cv
::
ocl
::
oclMat
&
input1
,
cv
::
ocl
::
oclMat
&
dst1
,
cv
::
ocl
::
oclMat
&
dst2
);
private
:
double
pyrScale_
;
int
numLevels_
;
int
winSize_
;
int
numIters_
;
int
polyN_
;
double
polySigma_
;
int
flags_
;
ocl
::
FarnebackOpticalFlow
alg_
;
};
CV_INIT_ALGORITHM
(
FarneBack_OCL
,
"DenseOpticalFlowExt.FarneBack_OCL"
,
obj
.
info
()
->
addParam
(
obj
,
"pyrScale"
,
obj
.
pyrScale_
);
obj
.
info
()
->
addParam
(
obj
,
"numLevels"
,
obj
.
numLevels_
);
obj
.
info
()
->
addParam
(
obj
,
"winSize"
,
obj
.
winSize_
);
obj
.
info
()
->
addParam
(
obj
,
"numIters"
,
obj
.
numIters_
);
obj
.
info
()
->
addParam
(
obj
,
"polyN"
,
obj
.
polyN_
);
obj
.
info
()
->
addParam
(
obj
,
"polySigma"
,
obj
.
polySigma_
);
obj
.
info
()
->
addParam
(
obj
,
"flags"
,
obj
.
flags_
));
FarneBack_OCL
::
FarneBack_OCL
()
:
oclOpticalFlow
(
CV_8UC1
)
{
pyrScale_
=
alg_
.
pyrScale
;
numLevels_
=
alg_
.
numLevels
;
winSize_
=
alg_
.
winSize
;
numIters_
=
alg_
.
numIters
;
polyN_
=
alg_
.
polyN
;
polySigma_
=
alg_
.
polySigma
;
flags_
=
alg_
.
flags
;
}
void
FarneBack_OCL
::
impl
(
const
cv
::
ocl
::
oclMat
&
input0
,
const
cv
::
ocl
::
oclMat
&
input1
,
cv
::
ocl
::
oclMat
&
dst1
,
cv
::
ocl
::
oclMat
&
dst2
)
{
alg_
.
pyrScale
=
pyrScale_
;
alg_
.
numLevels
=
numLevels_
;
alg_
.
winSize
=
winSize_
;
alg_
.
numIters
=
numIters_
;
alg_
.
polyN
=
polyN_
;
alg_
.
polySigma
=
polySigma_
;
alg_
.
flags
=
flags_
;
alg_
(
input0
,
input1
,
dst1
,
dst2
);
}
void
FarneBack_OCL
::
collectGarbage
()
{
alg_
.
releaseMemory
();
oclOpticalFlow
::
collectGarbage
();
}
}
Ptr
<
DenseOpticalFlowExt
>
cv
::
superres
::
createOptFlow_Farneback_OCL
()
{
return
new
FarneBack_OCL
;
}
#endif
\ No newline at end of file
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