Commit 0bf823e1 authored by Alexander Alekhin's avatar Alexander Alekhin

stitching(perf): update condition threshold

parent 39ee07b8
...@@ -166,7 +166,7 @@ PERF_TEST_P( matchVector, bestOf2NearestVectorFeatures, testing::Combine( ...@@ -166,7 +166,7 @@ PERF_TEST_P( matchVector, bestOf2NearestVectorFeatures, testing::Combine(
if (pairwise_matches[i].src_img_idx < 0) if (pairwise_matches[i].src_img_idx < 0)
continue; continue;
EXPECT_GT(pairwise_matches[i].matches.size(), 100); EXPECT_GT(pairwise_matches[i].matches.size(), 95u);
EXPECT_FALSE(pairwise_matches[i].H.empty()); EXPECT_FALSE(pairwise_matches[i].H.empty());
++matches_count; ++matches_count;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment