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
b96a556f
Commit
b96a556f
authored
Feb 15, 2012
by
Ivan Korolev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created a perftest for convertTo, updated perftests for arithmetical operations
parent
fe991052
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
1 deletion
+38
-1
perf_arithm.cpp
modules/core/perf/perf_arithm.cpp
+1
-1
pert_convertTo.cpp
modules/core/perf/pert_convertTo.cpp
+37
-0
No files found.
modules/core/perf/perf_arithm.cpp
View file @
b96a556f
...
...
@@ -7,7 +7,7 @@ using std::tr1::make_tuple;
using
std
::
tr1
::
get
;
#define TYPICAL_MAT_SIZES_CORE_ARITHM TYPICAL_MAT_SIZES
#define TYPICAL_MAT_TYPES_CORE_ARITHM CV_8UC1, CV_8SC1, CV_8UC4, CV_32SC1, CV_32FC1
#define TYPICAL_MAT_TYPES_CORE_ARITHM CV_8UC1, CV_8SC1, CV_
16SC1, CV_16SC2, CV_16SC3, CV_16SC4, CV_
8UC4, CV_32SC1, CV_32FC1
#define TYPICAL_MATS_CORE_ARITHM testing::Combine( testing::Values( TYPICAL_MAT_SIZES_CORE_ARITHM ), testing::Values( TYPICAL_MAT_TYPES_CORE_ARITHM ) )
#ifdef ANDROID
...
...
modules/core/perf/pert_convertTo.cpp
0 → 100644
View file @
b96a556f
#include "perf_precomp.hpp"
using
namespace
std
;
using
namespace
cv
;
using
namespace
perf
;
using
std
::
tr1
::
make_tuple
;
using
std
::
tr1
::
get
;
typedef
std
::
tr1
::
tuple
<
Size
,
MatType
,
MatType
,
int
,
double
>
Size_DepthSrc_DepthDst_Channels_alpha_t
;
typedef
perf
::
TestBaseWithParam
<
Size_DepthSrc_DepthDst_Channels_alpha_t
>
Size_DepthSrc_DepthDst_Channels_alpha
;
PERF_TEST_P
(
Size_DepthSrc_DepthDst_Channels_alpha
,
convertTo
,
testing
::
Combine
(
testing
::
Values
(
TYPICAL_MAT_SIZES
),
testing
::
Values
(
CV_8U
,
CV_16S
),
testing
::
Values
(
CV_8U
,
CV_16S
,
CV_32F
,
CV_64F
),
testing
::
Values
(
1
,
2
,
3
,
4
),
testing
::
Values
(
1.0
,
1.
/
255
)
)
)
{
Size
sz
=
get
<
0
>
(
GetParam
());
int
depthSrc
=
get
<
1
>
(
GetParam
());
int
depthDst
=
get
<
2
>
(
GetParam
());
int
channels
=
get
<
3
>
(
GetParam
());
double
alpha
=
get
<
4
>
(
GetParam
());
Mat
src
(
sz
,
CV_MAKETYPE
(
depthSrc
,
channels
));
randu
(
src
,
0
,
255
);
Mat
dst
(
sz
,
CV_MAKETYPE
(
depthDst
,
channels
));
TEST_CYCLE
()
src
.
convertTo
(
dst
,
depthDst
,
alpha
);
SANITY_CHECK
(
dst
);
}
\ No newline at end of file
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