From 0bf823e1eb0ddaa9bd38c9fa3413ffbec9cc364f Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Thu, 28 Sep 2017 19:21:18 +0300 Subject: [PATCH] stitching(perf): update condition threshold --- modules/stitching/perf/perf_matchers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/stitching/perf/perf_matchers.cpp b/modules/stitching/perf/perf_matchers.cpp index a2ffcc2526..fa0b0b8924 100644 --- a/modules/stitching/perf/perf_matchers.cpp +++ b/modules/stitching/perf/perf_matchers.cpp @@ -166,7 +166,7 @@ PERF_TEST_P( matchVector, bestOf2NearestVectorFeatures, testing::Combine( if (pairwise_matches[i].src_img_idx < 0) continue; - EXPECT_GT(pairwise_matches[i].matches.size(), 100); + EXPECT_GT(pairwise_matches[i].matches.size(), 95u); EXPECT_FALSE(pairwise_matches[i].H.empty()); ++matches_count; }