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
83470549
Commit
83470549
authored
Nov 12, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Nov 12, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1782 from ilya-lavrenov:ocl_adapBilat
parents
ef4eadd5
daedc6f4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
perf_filters.cpp
modules/ocl/perf/perf_filters.cpp
+1
-7
No files found.
modules/ocl/perf/perf_filters.cpp
View file @
83470549
...
...
@@ -366,8 +366,7 @@ PERF_TEST_P(BilateralFixture, Bilateral,
typedef
Size_MatType
adaptiveBilateralFixture
;
PERF_TEST_P
(
adaptiveBilateralFixture
,
adaptiveBilateral
,
::
testing
::
Combine
(
OCL_TYPICAL_MAT_SIZES
,
OCL_PERF_ENUM
(
CV_8UC1
,
CV_8UC3
)))
::
testing
::
Combine
(
::
testing
::
Values
(
OCL_SIZE_1000
),
OCL_PERF_ENUM
(
CV_8UC1
,
CV_8UC3
)))
{
const
Size_MatType_t
params
=
GetParam
();
const
Size
srcSize
=
get
<
0
>
(
params
);
...
...
@@ -378,11 +377,6 @@ PERF_TEST_P(adaptiveBilateralFixture, adaptiveBilateral,
Mat
src
(
srcSize
,
type
),
dst
(
srcSize
,
type
);
declare
.
in
(
src
,
WARMUP_RNG
).
out
(
dst
);
if
(
srcSize
==
OCL_SIZE_4000
)
declare
.
time
(
type
==
CV_8UC3
?
46
:
28
);
else
if
(
srcSize
==
OCL_SIZE_2000
)
declare
.
time
(
type
==
CV_8UC3
?
11
:
7
);
if
(
RUN_OCL_IMPL
)
{
ocl
::
oclMat
oclSrc
(
src
),
oclDst
(
srcSize
,
type
);
...
...
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