Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
2e2b6291
Commit
2e2b6291
authored
Sep 28, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
surf: fix OpenCL tests
should use UMat
parent
85a284c0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
test_features2d.cpp
modules/xfeatures2d/test/test_features2d.cpp
+24
-1
No files found.
modules/xfeatures2d/test/test_features2d.cpp
View file @
2e2b6291
...
@@ -408,7 +408,18 @@ protected:
...
@@ -408,7 +408,18 @@ protected:
Mat
calcDescriptors
;
Mat
calcDescriptors
;
double
t
=
(
double
)
getTickCount
();
double
t
=
(
double
)
getTickCount
();
dextractor
->
compute
(
img
,
keypoints
,
calcDescriptors
);
#ifdef HAVE_OPENCL
if
(
ocl
::
useOpenCL
())
{
cv
::
UMat
uimg
;
img
.
copyTo
(
uimg
);
dextractor
->
compute
(
uimg
,
keypoints
,
calcDescriptors
);
}
else
#endif
{
dextractor
->
compute
(
img
,
keypoints
,
calcDescriptors
);
}
t
=
getTickCount
()
-
t
;
t
=
getTickCount
()
-
t
;
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n
Average time of computing one descriptor = %g ms.
\n
"
,
t
/
((
double
)
getTickFrequency
()
*
1000.
)
/
calcDescriptors
.
rows
);
ts
->
printf
(
cvtest
::
TS
::
LOG
,
"
\n
Average time of computing one descriptor = %g ms.
\n
"
,
t
/
((
double
)
getTickFrequency
()
*
1000.
)
/
calcDescriptors
.
rows
);
...
@@ -1277,8 +1288,20 @@ protected:
...
@@ -1277,8 +1288,20 @@ protected:
}
}
vector
<
KeyPoint
>
kpt1
,
kpt2
;
vector
<
KeyPoint
>
kpt1
,
kpt2
;
Mat
d1
,
d2
;
Mat
d1
,
d2
;
#ifdef HAVE_OPENCL
if
(
ocl
::
useOpenCL
())
{
cv
::
UMat
uimg1
;
img1
.
copyTo
(
uimg1
);
f2d
->
detectAndCompute
(
uimg1
,
Mat
(),
kpt1
,
d1
);
f2d
->
detectAndCompute
(
uimg1
,
Mat
(),
kpt2
,
d2
);
}
else
#endif
{
f2d
->
detectAndCompute
(
img1
,
Mat
(),
kpt1
,
d1
);
f2d
->
detectAndCompute
(
img1
,
Mat
(),
kpt1
,
d1
);
f2d
->
detectAndCompute
(
img1
,
Mat
(),
kpt2
,
d2
);
f2d
->
detectAndCompute
(
img1
,
Mat
(),
kpt2
,
d2
);
}
for
(
size_t
i
=
0
;
i
<
kpt1
.
size
();
i
++
)
for
(
size_t
i
=
0
;
i
<
kpt1
.
size
();
i
++
)
CV_Assert
(
kpt1
[
i
].
response
>
0
);
CV_Assert
(
kpt1
[
i
].
response
>
0
);
for
(
size_t
i
=
0
;
i
<
kpt2
.
size
();
i
++
)
for
(
size_t
i
=
0
;
i
<
kpt2
.
size
();
i
++
)
...
...
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