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
a8426e1c
Commit
a8426e1c
authored
Nov 04, 2013
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed ocl::cornerHarris, ocl::cornerMinEigenVal and their accuracy tests
parent
dd942df0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
17 deletions
+21
-17
imgproc_calcHarris.cl
modules/ocl/src/opencl/imgproc_calcHarris.cl
+3
-1
imgproc_calcMinEigenVal.cl
modules/ocl/src/opencl/imgproc_calcMinEigenVal.cl
+3
-1
test_imgproc.cpp
modules/ocl/test/test_imgproc.cpp
+15
-15
No files found.
modules/ocl/src/opencl/imgproc_calcHarris.cl
View file @
a8426e1c
...
...
@@ -125,10 +125,12 @@ __kernel void calcHarris(__global const float *Dx, __global const float *Dy, __g
int
indexDx
=
(
dx_startY+i
)
*
(
dx_step>>2
)
+
(
dx_startX+col
)
;
float
dx_s
=
dx_con
?
Dx[indexDx]
:
0.0f
;
dx_data[i]
=
dx_s
;
bool
dy_con
=
dy_startX+col
>=
0
&&
dy_startX+col
<
dy_whole_cols
&&
dy_startY+i
>=
0
&&
dy_startY+i
<
dy_whole_rows
;
int
indexDy
=
(
dy_startY+i
)
*
(
dy_step>>2
)
+
(
dy_startX+col
)
;
float
dy_s
=
d
x
_con
?
Dy[indexDy]
:
0.0f
;
float
dy_s
=
d
y
_con
?
Dy[indexDy]
:
0.0f
;
dy_data[i]
=
dy_s
;
data[0][i]
=
dx_data[i]
*
dx_data[i]
;
data[1][i]
=
dx_data[i]
*
dy_data[i]
;
data[2][i]
=
dy_data[i]
*
dy_data[i]
;
...
...
modules/ocl/src/opencl/imgproc_calcMinEigenVal.cl
View file @
a8426e1c
...
...
@@ -124,10 +124,12 @@ __kernel void calcMinEigenVal(__global const float *Dx,__global const float *Dy,
int
indexDx
=
(
dx_startY+i
)
*
(
dx_step>>2
)
+
(
dx_startX+col
)
;
float
dx_s
=
dx_con
?
Dx[indexDx]
:
0.0f
;
dx_data[i]
=
dx_s
;
bool
dy_con
=
dy_startX+col
>=
0
&&
dy_startX+col
<
dy_whole_cols
&&
dy_startY+i
>=
0
&&
dy_startY+i
<
dy_whole_rows
;
int
indexDy
=
(
dy_startY+i
)
*
(
dy_step>>2
)
+
(
dy_startX+col
)
;
float
dy_s
=
d
x
_con
?
Dy[indexDy]
:
0.0f
;
float
dy_s
=
d
y
_con
?
Dy[indexDy]
:
0.0f
;
dy_data[i]
=
dy_s
;
data[0][i]
=
dx_data[i]
*
dx_data[i]
;
data[1][i]
=
dx_data[i]
*
dy_data[i]
;
data[2][i]
=
dy_data[i]
*
dy_data[i]
;
...
...
modules/ocl/test/test_imgproc.cpp
View file @
a8426e1c
...
...
@@ -93,22 +93,14 @@ PARAM_TEST_CASE(ImgprocTestBase, MatType,
generateOclMat
(
gdst_whole
,
gdst_roi
,
dst_whole
,
roiSize
,
dstBorder
);
}
void
Near
(
double
threshold
=
0.0
,
bool
relative
=
false
)
void
Near
(
double
threshold
=
0.0
)
{
Mat
roi
,
whole
;
gdst_whole
.
download
(
whole
);
gdst_roi
.
download
(
roi
);
if
(
relative
)
{
EXPECT_MAT_NEAR_RELATIVE
(
dst_whole
,
whole
,
threshold
);
EXPECT_MAT_NEAR_RELATIVE
(
dst_roi
,
roi
,
threshold
);
}
else
{
EXPECT_MAT_NEAR
(
dst_whole
,
whole
,
threshold
);
EXPECT_MAT_NEAR
(
dst_roi
,
roi
,
threshold
);
}
EXPECT_MAT_NEAR
(
dst_whole
,
whole
,
threshold
);
EXPECT_MAT_NEAR
(
dst_roi
,
roi
,
threshold
);
}
};
...
...
@@ -207,11 +199,19 @@ struct CornerTestBase :
Mat
image
=
readImageType
(
"gpu/stereobm/aloe-L.png"
,
type
);
ASSERT_FALSE
(
image
.
empty
());
bool
isFP
=
CV_MAT_DEPTH
(
type
)
>=
CV_32F
;
float
val
=
255.0
f
;
if
(
isFP
)
{
image
.
convertTo
(
image
,
-
1
,
1.0
/
255
);
val
/=
255.0
f
;
}
Size
roiSize
=
image
.
size
();
Border
srcBorder
=
randomBorder
(
0
,
useRoi
?
MAX_VALUE
:
0
);
Size
wholeSize
=
Size
(
roiSize
.
width
+
srcBorder
.
lef
+
srcBorder
.
rig
,
roiSize
.
height
+
srcBorder
.
top
+
srcBorder
.
bot
);
src
=
randomMat
(
wholeSize
,
type
,
-
255
,
255
,
false
);
src
=
randomMat
(
wholeSize
,
type
,
-
val
,
val
,
false
);
src_roi
=
src
(
Rect
(
srcBorder
.
lef
,
srcBorder
.
top
,
roiSize
.
width
,
roiSize
.
height
));
image
.
copyTo
(
src_roi
);
...
...
@@ -236,7 +236,7 @@ OCL_TEST_P(CornerMinEigenVal, Mat)
cornerMinEigenVal
(
src_roi
,
dst_roi
,
blockSize
,
apertureSize
,
borderType
);
ocl
::
cornerMinEigenVal
(
gsrc_roi
,
gdst_roi
,
blockSize
,
apertureSize
,
borderType
);
Near
(
1e-
5
,
true
);
Near
(
1e-
6
);
}
}
...
...
@@ -256,7 +256,7 @@ OCL_TEST_P(CornerHarris, Mat)
cornerHarris
(
src_roi
,
dst_roi
,
blockSize
,
apertureSize
,
k
,
borderType
);
ocl
::
cornerHarris
(
gsrc_roi
,
gdst_roi
,
blockSize
,
apertureSize
,
k
,
borderType
);
Near
(
1e-
5
,
true
);
Near
(
1e-
6
);
}
}
...
...
@@ -522,7 +522,7 @@ INSTANTIATE_TEST_CASE_P(Imgproc, CornerMinEigenVal, Combine(
Bool
()));
INSTANTIATE_TEST_CASE_P
(
Imgproc
,
CornerHarris
,
Combine
(
Values
((
MatType
)
CV_8UC1
),
// TODO does not work properly with CV_32FC1
Values
((
MatType
)
CV_8UC1
,
CV_32FC1
),
Values
(
3
,
5
),
Values
(
(
int
)
BORDER_CONSTANT
,
(
int
)
BORDER_REPLICATE
,
(
int
)
BORDER_REFLECT
,
(
int
)
BORDER_REFLECT_101
),
Bool
()));
...
...
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