Commit 14d3a2ef authored by Vladislav Sovrasov's avatar Vladislav Sovrasov

stereo: remove duplicated data types in parametrized testcases

parent f80dc21c
......@@ -53,8 +53,8 @@ typedef perf::TestBaseWithParam<s_bm_test_t> s_bm;
PERF_TEST_P( s_bm, sgm_perf,
testing::Combine(
testing::Values( cv::Size(512, 283), cv::Size(320, 240)),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8UC1,CV_8U,CV_16S )
testing::Values( CV_8U ),
testing::Values( CV_8U,CV_16S )
)
)
{
......@@ -80,8 +80,8 @@ PERF_TEST_P( s_bm, sgm_perf,
PERF_TEST_P( s_bm, bm_perf,
testing::Combine(
testing::Values( cv::Size(512, 383), cv::Size(320, 240) ),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8UC1,CV_8U )
testing::Values( CV_8U ),
testing::Values( CV_8U )
)
)
{
......
......@@ -52,7 +52,7 @@ typedef perf::TestBaseWithParam<descript_params_t> descript_params;
PERF_TEST_P( descript_params, census_sparse_descriptor,
testing::Combine(
testing::Values( TYPICAL_MAT_SIZES ),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8U ),
testing::Values( CV_32SC4,CV_32S )
)
)
......@@ -74,7 +74,7 @@ PERF_TEST_P( descript_params, census_sparse_descriptor,
PERF_TEST_P( descript_params, star_census_transform,
testing::Combine(
testing::Values( TYPICAL_MAT_SIZES ),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8U ),
testing::Values( CV_32SC4,CV_32S )
)
)
......@@ -96,7 +96,7 @@ PERF_TEST_P( descript_params, star_census_transform,
PERF_TEST_P( descript_params, modified_census_transform,
testing::Combine(
testing::Values( TYPICAL_MAT_SIZES ),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8U ),
testing::Values( CV_32SC4,CV_32S )
)
)
......@@ -120,7 +120,7 @@ PERF_TEST_P( descript_params, modified_census_transform,
PERF_TEST_P( descript_params, center_symetric_census,
testing::Combine(
testing::Values( TYPICAL_MAT_SIZES ),
testing::Values( CV_8UC1,CV_8U ),
testing::Values( CV_8U ),
testing::Values( CV_32SC4,CV_32S )
)
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment