1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

Merge pull request #6917 from jet47:gpu-rotate-sanity-test

This commit is contained in:
Alexander Alekhin
2016-07-15 16:16:25 +00:00
+4 -1
View File
@@ -1373,7 +1373,10 @@ PERF_TEST_P(Sz_Depth_Cn_Inter, ImgProc_Rotate,
TEST_CYCLE() cv::gpu::rotate(d_src, dst, size, 30.0, 0, 0, interpolation);
GPU_SANITY_CHECK(dst, 1e-3, ERROR_RELATIVE);
if (depth == CV_8U)
GPU_SANITY_CHECK(dst, 1);
else
GPU_SANITY_CHECK(dst, 1e-3, ERROR_RELATIVE);
}
else
{