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
5ca24d2e
Commit
5ca24d2e
authored
Dec 26, 2011
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added perf tests for cv::compare
parent
320bee3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
perf_compare.cpp
modules/core/perf/perf_compare.cpp
+62
-0
No files found.
modules/core/perf/perf_compare.cpp
0 → 100644
View file @
5ca24d2e
#include "perf_precomp.hpp"
using
namespace
std
;
using
namespace
cv
;
using
namespace
perf
;
CV_ENUM
(
CmpType
,
CMP_EQ
,
CMP_GT
,
CMP_GE
,
CMP_LT
,
CMP_LE
,
CMP_NE
)
typedef
std
::
tr1
::
tuple
<
Size
,
MatType
,
CmpType
>
Size_MatType_CmpType_t
;
typedef
perf
::
TestBaseWithParam
<
Size_MatType_CmpType_t
>
Size_MatType_CmpType
;
PERF_TEST_P
(
Size_MatType_CmpType
,
compare
,
testing
::
Combine
(
testing
::
Values
(
TYPICAL_MAT_SIZES
),
testing
::
Values
(
CV_8UC1
,
CV_8UC4
,
CV_8SC1
,
CV_16UC1
,
CV_16SC1
,
CV_32SC1
,
CV_32FC1
),
testing
::
ValuesIn
(
CmpType
::
all
()
)
)
)
{
Size
sz
=
std
::
tr1
::
get
<
0
>
(
GetParam
());
int
matType1
=
std
::
tr1
::
get
<
1
>
(
GetParam
());
CmpType
cmpType
=
std
::
tr1
::
get
<
2
>
(
GetParam
());
Mat
src1
(
sz
,
matType1
);
Mat
src2
(
sz
,
matType1
);
Mat
dst
(
sz
,
CV_8UC
(
CV_MAT_CN
(
matType1
)));
declare
.
in
(
src1
,
src2
,
WARMUP_RNG
).
out
(
dst
);
TEST_CYCLE
(
100
)
{
cv
::
compare
(
src1
,
src2
,
dst
,
cmpType
);
}
SANITY_CHECK
(
dst
);
}
PERF_TEST_P
(
Size_MatType_CmpType
,
compareScalar
,
testing
::
Combine
(
testing
::
Values
(
TYPICAL_MAT_SIZES
),
testing
::
Values
(
TYPICAL_MAT_TYPES
),
testing
::
ValuesIn
(
CmpType
::
all
()
)
)
)
{
Size
sz
=
std
::
tr1
::
get
<
0
>
(
GetParam
());
int
matType
=
std
::
tr1
::
get
<
1
>
(
GetParam
());
CmpType
cmpType
=
std
::
tr1
::
get
<
2
>
(
GetParam
());
Mat
src1
(
sz
,
matType
);
Scalar
src2
;
Mat
dst
(
sz
,
CV_8UC
(
CV_MAT_CN
(
matType
)));
declare
.
in
(
src1
,
src2
,
WARMUP_RNG
).
out
(
dst
);
TEST_CYCLE
(
100
)
{
cv
::
compare
(
src1
,
src2
,
dst
,
cmpType
);
}
SANITY_CHECK
(
dst
);
}
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