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
29eefe52
Commit
29eefe52
authored
Aug 13, 2013
by
peng xiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add OpenCL accelerated implementation for Retina.
parent
d8c6e89a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
148 additions
and
2 deletions
+148
-2
CMakeLists.txt
modules/bioinspired/CMakeLists.txt
+1
-1
retina.hpp
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
+2
-1
retina_kernel.cl
modules/bioinspired/src/opencl/retina_kernel.cl
+0
-0
precomp.hpp
modules/bioinspired/src/precomp.hpp
+6
-0
retina_ocl.cpp
modules/bioinspired/src/retina_ocl.cpp
+0
-0
retina_ocl.hpp
modules/bioinspired/src/retina_ocl.hpp
+0
-0
test_retina_ocl.cpp
modules/bioinspired/test/test_retina_ocl.cpp
+139
-0
No files found.
modules/bioinspired/CMakeLists.txt
View file @
29eefe52
set
(
the_description
"Biologically inspired algorithms"
)
ocv_define_module
(
bioinspired opencv_core OPTIONAL opencv_highgui
)
ocv_define_module
(
bioinspired opencv_core OPTIONAL opencv_highgui
opencv_ocl
)
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
View file @
29eefe52
...
...
@@ -304,7 +304,8 @@ public:
CV_EXPORTS
Ptr
<
Retina
>
createRetina
(
Size
inputSize
);
CV_EXPORTS
Ptr
<
Retina
>
createRetina
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
CV_EXPORTS
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
);
CV_EXPORTS
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
}
}
#endif
/* __OPENCV_BIOINSPIRED_RETINA_HPP__ */
modules/bioinspired/src/opencl/retina_kernel.cl
0 → 100644
View file @
29eefe52
This diff is collapsed.
Click to expand it.
modules/bioinspired/src/precomp.hpp
View file @
29eefe52
...
...
@@ -43,11 +43,17 @@
#ifndef __OPENCV_PRECOMP_H__
#define __OPENCV_PRECOMP_H__
#include "opencv2/opencv_modules.hpp"
#include "opencv2/bioinspired.hpp"
#include "opencv2/core/utility.hpp"
#include "opencv2/core/private.hpp"
#include <valarray>
#ifdef HAVE_OPENCV_OCL
#include "opencv2/ocl/private/util.hpp"
#endif
namespace
cv
{
...
...
modules/bioinspired/src/retina_ocl.cpp
0 → 100644
View file @
29eefe52
This diff is collapsed.
Click to expand it.
modules/bioinspired/src/retina_ocl.hpp
0 → 100644
View file @
29eefe52
This diff is collapsed.
Click to expand it.
modules/bioinspired/test/test_retina_ocl.cpp
0 → 100644
View file @
29eefe52
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2010-2013, Multicoreware, Inc., all rights reserved.
// Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// @Authors
// Peng Xiao, pengxiao@multicorewareinc.com
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other oclMaterials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors as is and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include "opencv2/opencv_modules.hpp"
#include "opencv2/bioinspired.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/ocl.hpp"
#if defined(HAVE_OPENCV_OCL) && defined(HAVE_OPENCL)
#define RETINA_ITERATIONS 5
static
double
checkNear
(
const
cv
::
Mat
&
m1
,
const
cv
::
Mat
&
m2
)
{
return
cv
::
norm
(
m1
,
m2
,
cv
::
NORM_INF
);
}
#define PARAM_TEST_CASE(name, ...) struct name : testing::TestWithParam< std::tr1::tuple< __VA_ARGS__ > >
#define GET_PARAM(k) std::tr1::get< k >(GetParam())
PARAM_TEST_CASE
(
Retina_OCL
,
bool
,
int
,
bool
,
double
,
double
)
{
bool
colorMode
;
int
colorSamplingMethod
;
bool
useLogSampling
;
double
reductionFactor
;
double
samplingStrength
;
std
::
vector
<
cv
::
ocl
::
Info
>
infos
;
virtual
void
SetUp
()
{
colorMode
=
GET_PARAM
(
0
);
colorSamplingMethod
=
GET_PARAM
(
1
);
useLogSampling
=
GET_PARAM
(
2
);
reductionFactor
=
GET_PARAM
(
3
);
samplingStrength
=
GET_PARAM
(
4
);
cv
::
ocl
::
getDevice
(
infos
);
std
::
cout
<<
"Device name:"
<<
infos
[
0
].
DeviceName
[
0
]
<<
std
::
endl
;
}
};
TEST_P
(
Retina_OCL
,
Accuracy
)
{
using
namespace
cv
;
Mat
input
=
imread
(
cvtest
::
TS
::
ptr
()
->
get_data_path
()
+
"shared/lena.png"
,
colorMode
);
CV_Assert
(
!
input
.
empty
());
ocl
::
oclMat
ocl_input
(
input
);
Ptr
<
bioinspired
::
Retina
>
ocl_retina
=
bioinspired
::
createRetina_OCL
(
input
.
size
(),
colorMode
,
colorSamplingMethod
,
useLogSampling
,
reductionFactor
,
samplingStrength
);
Ptr
<
bioinspired
::
Retina
>
gold_retina
=
bioinspired
::
createRetina
(
input
.
size
(),
colorMode
,
colorSamplingMethod
,
useLogSampling
,
reductionFactor
,
samplingStrength
);
Mat
gold_parvo
;
Mat
gold_magno
;
ocl
::
oclMat
ocl_parvo
;
ocl
::
oclMat
ocl_magno
;
for
(
int
i
=
0
;
i
<
RETINA_ITERATIONS
;
i
++
)
{
ocl_retina
->
run
(
ocl_input
);
gold_retina
->
run
(
input
);
gold_retina
->
getParvo
(
gold_parvo
);
gold_retina
->
getMagno
(
gold_magno
);
ocl_retina
->
getParvo
(
ocl_parvo
);
ocl_retina
->
getMagno
(
ocl_magno
);
EXPECT_LE
(
checkNear
(
gold_parvo
,
(
Mat
)
ocl_parvo
),
1.0
);
EXPECT_LE
(
checkNear
(
gold_magno
,
(
Mat
)
ocl_magno
),
1.0
);
}
}
INSTANTIATE_TEST_CASE_P
(
Contrib
,
Retina_OCL
,
testing
::
Combine
(
testing
::
Values
(
false
,
true
),
testing
::
Values
((
int
)
cv
::
bioinspired
::
RETINA_COLOR_BAYER
),
testing
::
Values
(
false
/*,true*/
),
testing
::
Values
(
1.0
,
0.5
),
testing
::
Values
(
10.0
,
5.0
)));
#endif
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