stitching(perf): increase threshold of transform vector

This commit is contained in:
Alexander Alekhin
2018-12-07 13:22:39 +03:00
parent 6fbf6f8bea
commit 606622ab36

View File

@@ -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);
}