1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

increase epsilons for some tests, which functions use floating point arithm

(cherry picked from commit 5c07e0b6d3)
This commit is contained in:
Vladislav Vinogradov
2014-10-23 18:39:36 +04:00
committed by Alexander Smorkalov
parent 5a77176654
commit d579d3e596
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1413,7 +1413,7 @@ PERF_TEST_P(Sz_Depth_Code, ImgProc_CvtColor,
TEST_CYCLE() cv::gpu::cvtColor(d_src, dst, info.code, info.dcn);
GPU_SANITY_CHECK(dst, 1e-4);
GPU_SANITY_CHECK(dst, 1e-2);
}
else
{
@@ -1609,7 +1609,7 @@ PERF_TEST_P(Sz_Depth_Cn, ImgProc_ImagePyramidBuild,
cv::gpu::GpuMat dst;
d_pyr.getLayer(dst, dstSize);
GPU_SANITY_CHECK(dst);
GPU_SANITY_CHECK(dst, 1e-3);
}
else
{
@@ -1646,7 +1646,7 @@ PERF_TEST_P(Sz_Depth_Cn, ImgProc_ImagePyramidGetLayer,
TEST_CYCLE() d_pyr.getLayer(dst, dstSize);
GPU_SANITY_CHECK(dst);
GPU_SANITY_CHECK(dst, 1e-3);
}
else
{
+1 -1
View File
@@ -143,7 +143,7 @@ PERF_TEST_P(ImagePair, Video_CreateOpticalFlowNeedleMap,
TEST_CYCLE() cv::gpu::createOpticalFlowNeedleMap(u, v, vertex, colors);
GPU_SANITY_CHECK(vertex, 1e-6);
GPU_SANITY_CHECK(vertex, 1e-5);
GPU_SANITY_CHECK(colors);
}
else