From: Alexander Alekhin Date: Fri, 7 Dec 2018 10:22:39 +0000 (+0300) Subject: stitching(perf): increase threshold of transform vector X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1^2~381^2~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=606622ab364b566b02914c548244431b9a759831;p=platform%2Fupstream%2Fopencv.git stitching(perf): increase threshold of transform vector --- diff --git a/modules/stitching/perf/perf_matchers.cpp b/modules/stitching/perf/perf_matchers.cpp index 378d92a..0ab4340 100644 --- a/modules/stitching/perf/perf_matchers.cpp +++ b/modules/stitching/perf/perf_matchers.cpp @@ -102,7 +102,7 @@ PERF_TEST_P( match, bestOf2Nearest, TEST_DETECTORS) Mat dist (pairwise_matches.H, Range::all(), Range(2, 3)); Mat R (pairwise_matches.H, Range::all(), Range(0, 2)); // separate transform matrix, use lower error on rotations - SANITY_CHECK(dist, 1., ERROR_ABSOLUTE); + SANITY_CHECK(dist, 3., ERROR_ABSOLUTE); SANITY_CHECK(R, .06, ERROR_ABSOLUTE); }