Commit b668d3f6 authored by Philippe FOUBERT's avatar Philippe FOUBERT

Modification of the related tests in core/tests/ocl

parent 0629add3
......@@ -85,7 +85,7 @@ PARAM_TEST_CASE(ConvertTo, MatDepth, MatDepth, Channels, bool)
}
};
OCL_TEST_P(ConvertTo, Accuracy)
OCL_TEST_P(ConvertTo, WithScale_Accuracy)
{
for (int j = 0; j < test_loop_times; j++)
{
......@@ -101,6 +101,20 @@ OCL_TEST_P(ConvertTo, Accuracy)
}
}
OCL_TEST_P(ConvertTo, NoScale_Accuracy)
{
for (int j = 0; j < test_loop_times; j++)
{
generateTestData();
OCL_OFF(src_roi.convertTo(dst_roi, dstType, 1, 0));
OCL_ON(usrc_roi.convertTo(udst_roi, dstType, 1, 0));
double eps = CV_MAT_DEPTH(dstType) >= CV_32F ? 2e-4 : 1;
OCL_EXPECT_MATS_NEAR(dst, eps);
}
}
//////////////////////////////// CopyTo /////////////////////////////////////////////////
PARAM_TEST_CASE(CopyTo, MatDepth, Channels, bool, bool)
......
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