|
|
|
@ -12,25 +12,25 @@ typedef perf::TestBaseWithParam<Size_DepthSrc_DepthDst_Channels_alpha_t> Size_De |
|
|
|
|
PERF_TEST_P( Size_DepthSrc_DepthDst_Channels_alpha, convertTo, |
|
|
|
|
testing::Combine |
|
|
|
|
( |
|
|
|
|
testing::Values(TYPICAL_MAT_SIZES), |
|
|
|
|
testing::Values(CV_8U, CV_16S, CV_32S, CV_32F), |
|
|
|
|
testing::Values(CV_8U, CV_16S, CV_32F, CV_64F), |
|
|
|
|
testing::Values(1, 2, 3, 4), |
|
|
|
|
testing::Values(1.0, 1./255) |
|
|
|
|
testing::Values(szVGA, sz1080p), |
|
|
|
|
testing::Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F), |
|
|
|
|
testing::Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F), |
|
|
|
|
testing::Values(1, 4), |
|
|
|
|
testing::Values(1.0, 1./255) |
|
|
|
|
) |
|
|
|
|
) |
|
|
|
|
{ |
|
|
|
|
Size sz = get<0>(GetParam()); |
|
|
|
|
int depthSrc = get<1>(GetParam()); |
|
|
|
|
int depthDst = get<2>(GetParam()); |
|
|
|
|
int depthDst = get<2>(GetParam()); |
|
|
|
|
int channels = get<3>(GetParam()); |
|
|
|
|
double alpha = get<4>(GetParam()); |
|
|
|
|
double alpha = get<4>(GetParam()); |
|
|
|
|
|
|
|
|
|
Mat src(sz, CV_MAKETYPE(depthSrc, channels));
|
|
|
|
|
randu(src, 0, 255); |
|
|
|
|
Mat dst(sz, CV_MAKETYPE(depthDst, channels));
|
|
|
|
|
randu(src, 0, 255); |
|
|
|
|
Mat dst(sz, CV_MAKETYPE(depthDst, channels)); |
|
|
|
|
|
|
|
|
|
TEST_CYCLE() src.convertTo(dst, depthDst, alpha); |
|
|
|
|
TEST_CYCLE() src.convertTo(dst, depthDst, alpha); |
|
|
|
|
|
|
|
|
|
SANITY_CHECK(dst); |
|
|
|
|
} |
|
|
|
|
} |