stitching(perf): update condition threshold
authorAlexander Alekhin <alexander.alekhin@intel.com>
Thu, 28 Sep 2017 16:21:18 +0000 (19:21 +0300)
committerAlexander Alekhin <alexander.alekhin@intel.com>
Fri, 29 Sep 2017 11:33:13 +0000 (14:33 +0300)
modules/stitching/perf/perf_matchers.cpp

index a2ffcc2..fa0b0b8 100644 (file)
@@ -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;
     }