From 975e40f1c0552c776a3b71dcf0358c8dfd8ecbe0 Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Fri, 15 Aug 2014 13:41:47 +0400 Subject: [PATCH] increase epsilon for TVL1 sanity test (cherry picked from commit 5dff283b39139008923eeb81d0ef5d351ac04522) --- modules/gpu/perf/perf_video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gpu/perf/perf_video.cpp b/modules/gpu/perf/perf_video.cpp index 6c7a648221..16e0844106 100644 --- a/modules/gpu/perf/perf_video.cpp +++ b/modules/gpu/perf/perf_video.cpp @@ -427,8 +427,8 @@ PERF_TEST_P(ImagePair, Video_OpticalFlowDual_TVL1, TEST_CYCLE() d_alg(d_frame0, d_frame1, u, v); - GPU_SANITY_CHECK(u, 1e-1); - GPU_SANITY_CHECK(v, 1e-1); + GPU_SANITY_CHECK(u, 0.12); + GPU_SANITY_CHECK(v, 0.12); } else {