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
5ca1b559
Commit
5ca1b559
authored
Aug 16, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Aug 16, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1284 from melody-rain:superres_example_2
parents
47b3e785
8fb6b689
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
136 additions
and
13 deletions
+136
-13
CMakeLists.txt
samples/gpu/CMakeLists.txt
+8
-1
super_resolution.cpp
samples/gpu/super_resolution.cpp
+128
-12
No files found.
samples/gpu/CMakeLists.txt
View file @
5ca1b559
...
...
@@ -2,7 +2,6 @@ SET(OPENCV_GPU_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc ope
opencv_ml opencv_video opencv_objdetect opencv_features2d
opencv_calib3d opencv_legacy opencv_contrib opencv_gpu
opencv_superres
)
ocv_check_dependencies
(
${
OPENCV_GPU_SAMPLES_REQUIRED_DEPS
}
)
if
(
BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND
)
...
...
@@ -25,6 +24,10 @@ if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND)
ocv_include_directories
(
${
CUDA_INCLUDE_DIRS
}
)
endif
()
if
(
HAVE_OPENCL
)
ocv_include_directories
(
"
${
OpenCV_SOURCE_DIR
}
/modules/ocl/include"
)
endif
()
if
(
CMAKE_COMPILER_IS_GNUCXX AND NOT ENABLE_NOISY_WARNINGS
)
set
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-Wno-unused-function"
)
endif
()
...
...
@@ -41,6 +44,10 @@ if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND)
target_link_libraries
(
${
the_target
}
opencv_nonfree
)
endif
()
if
(
HAVE_OPENCL
)
target_link_libraries
(
${
the_target
}
opencv_ocl
)
endif
()
set_target_properties
(
${
the_target
}
PROPERTIES
OUTPUT_NAME
"
${
project
}
-example-
${
name
}
"
PROJECT_LABEL
"(EXAMPLE_
${
project_upper
}
)
${
name
}
"
)
...
...
samples/gpu/super_resolution.cpp
View file @
5ca1b559
...
...
@@ -7,11 +7,16 @@
#include "opencv2/contrib/contrib.hpp"
#include "opencv2/superres/superres.hpp"
#include "opencv2/superres/optical_flow.hpp"
#include "opencv2/opencv_modules.hpp"
#if defined(HAVE_OPENCV_OCL)
#include "opencv2/ocl/ocl.hpp"
#endif
using
namespace
std
;
using
namespace
cv
;
using
namespace
cv
::
superres
;
bool
useOclChanged
;
#define MEASURE_TIME(op) \
{ \
TickMeter tm; \
...
...
@@ -49,9 +54,38 @@ static Ptr<DenseOpticalFlowExt> createOptFlow(const string& name, bool useGpu)
exit
(
-
1
);
}
}
#if defined(HAVE_OPENCV_OCL)
static
Ptr
<
DenseOpticalFlowExt
>
createOptFlow
(
const
string
&
name
)
{
if
(
name
==
"farneback"
)
{
return
createOptFlow_Farneback_OCL
();
}
else
if
(
name
==
"simple"
)
{
useOclChanged
=
true
;
std
::
cout
<<
"simple on OpenCL has not been implemented. Use CPU instead!
\n
"
;
return
createOptFlow_Simple
();
}
else
if
(
name
==
"tvl1"
)
return
createOptFlow_DualTVL1_OCL
();
else
if
(
name
==
"brox"
)
{
std
::
cout
<<
"brox has not been implemented!
\n
"
;
return
NULL
;
}
else
if
(
name
==
"pyrlk"
)
return
createOptFlow_PyrLK_OCL
();
else
{
cerr
<<
"Incorrect Optical Flow algorithm - "
<<
name
<<
endl
;
}
return
0
;
}
#endif
int
main
(
int
argc
,
const
char
*
argv
[])
{
useOclChanged
=
false
;
CommandLineParser
cmd
(
argc
,
argv
,
"{ v | video | | Input video }"
"{ o | output | | Output video }"
...
...
@@ -59,7 +93,7 @@ int main(int argc, const char* argv[])
"{ i | iterations | 180 | Iteration count }"
"{ t | temporal | 4 | Radius of the temporal search area }"
"{ f | flow | farneback | Optical flow algorithm (farneback, simple, tvl1, brox, pyrlk) }"
"{ g
pu | gpu | false | Use GPU
}"
"{ g
| gpu | | CPU as default device, cuda for CUDA and ocl for OpenCL
}"
"{ h | help | false | Print help message }"
);
...
...
@@ -76,21 +110,79 @@ int main(int argc, const char* argv[])
const
int
iterations
=
cmd
.
get
<
int
>
(
"iterations"
);
const
int
temporalAreaRadius
=
cmd
.
get
<
int
>
(
"temporal"
);
const
string
optFlow
=
cmd
.
get
<
string
>
(
"flow"
);
const
bool
useGpu
=
cmd
.
get
<
bool
>
(
"gpu"
);
string
gpuOption
=
cmd
.
get
<
string
>
(
"gpu"
);
std
::
transform
(
gpuOption
.
begin
(),
gpuOption
.
end
(),
gpuOption
.
begin
(),
::
tolower
);
bool
useCuda
=
false
;
bool
useOcl
=
false
;
if
(
gpuOption
.
compare
(
"ocl"
)
==
0
)
useOcl
=
true
;
else
if
(
gpuOption
.
compare
(
"cuda"
)
==
0
)
useCuda
=
true
;
#ifndef HAVE_OPENCV_OCL
if
(
useOcl
)
{
{
cout
<<
"OPENCL is not compiled
\n
"
;
return
0
;
}
}
#endif
#if defined(HAVE_OPENCV_OCL)
std
::
vector
<
cv
::
ocl
::
Info
>
info
;
if
(
useCuda
)
{
CV_Assert
(
!
useOcl
);
info
.
clear
();
}
if
(
useOcl
)
{
CV_Assert
(
!
useCuda
);
cv
::
ocl
::
getDevice
(
info
);
}
#endif
Ptr
<
SuperResolution
>
superRes
;
if
(
useGpu
)
superRes
=
createSuperResolution_BTVL1_GPU
();
#if defined(HAVE_OPENCV_OCL)
if
(
useOcl
)
{
Ptr
<
DenseOpticalFlowExt
>
of
=
createOptFlow
(
optFlow
);
if
(
of
.
empty
())
exit
(
-
1
);
if
(
useOclChanged
)
{
superRes
=
createSuperResolution_BTVL1
();
useOcl
=
!
useOcl
;
}
else
superRes
=
createSuperResolution_BTVL1_OCL
();
superRes
->
set
(
"opticalFlow"
,
of
);
}
else
superRes
=
createSuperResolution_BTVL1
();
#endif
{
if
(
useCuda
)
superRes
=
createSuperResolution_BTVL1_GPU
();
else
superRes
=
createSuperResolution_BTVL1
();
Ptr
<
DenseOpticalFlowExt
>
of
=
createOptFlow
(
optFlow
,
useCuda
);
if
(
of
.
empty
())
exit
(
-
1
);
superRes
->
set
(
"opticalFlow"
,
of
);
}
superRes
->
set
(
"scale"
,
scale
);
superRes
->
set
(
"iterations"
,
iterations
);
superRes
->
set
(
"temporalAreaRadius"
,
temporalAreaRadius
);
superRes
->
set
(
"opticalFlow"
,
createOptFlow
(
optFlow
,
useGpu
));
Ptr
<
FrameSource
>
frameSource
;
if
(
use
Gpu
)
if
(
use
Cuda
)
{
// Try to use gpu Video Decoding
try
...
...
@@ -116,7 +208,11 @@ int main(int argc, const char* argv[])
cout
<<
"Iterations : "
<<
iterations
<<
endl
;
cout
<<
"Temporal radius : "
<<
temporalAreaRadius
<<
endl
;
cout
<<
"Optical Flow : "
<<
optFlow
<<
endl
;
cout
<<
"Mode : "
<<
(
useGpu
?
"GPU"
:
"CPU"
)
<<
endl
;
#if defined(HAVE_OPENCV_OCL)
cout
<<
"Mode : "
<<
(
useCuda
?
"CUDA"
:
useOcl
?
"OpenCL"
:
"CPU"
)
<<
endl
;
#else
cout
<<
"Mode : "
<<
(
useGpu
?
"CUDA"
:
"CPU"
)
<<
endl
;
#endif
}
superRes
->
setInput
(
frameSource
);
...
...
@@ -126,10 +222,30 @@ int main(int argc, const char* argv[])
for
(
int
i
=
0
;;
++
i
)
{
cout
<<
'['
<<
setw
(
3
)
<<
i
<<
"] : "
;
Mat
result
;
MEASURE_TIME
(
superRes
->
nextFrame
(
result
));
#if defined(HAVE_OPENCV_OCL)
cv
::
ocl
::
oclMat
result_
;
if
(
useOcl
)
{
MEASURE_TIME
(
superRes
->
nextFrame
(
result_
));
}
else
#endif
{
MEASURE_TIME
(
superRes
->
nextFrame
(
result
));
}
#ifdef HAVE_OPENCV_OCL
if
(
useOcl
)
{
if
(
!
result_
.
empty
())
{
result_
.
download
(
result
);
}
}
#endif
if
(
result
.
empty
())
break
;
...
...
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