Merge pull request #3960 from ilya-lavrenov:aarch64_test_fixes

This commit is contained in:
Vadim Pisarevsky
2015-04-28 10:48:33 +00:00
8 changed files with 51 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ PERF_TEST_P(orb, detect, testing::Values(ORB_IMAGES))
TEST_CYCLE() detector(frame, mask, points);
sort(points.begin(), points.end(), comparators::KeypointGreater());
SANITY_CHECK_KEYPOINTS(points);
SANITY_CHECK_KEYPOINTS(points, 1e-7, ERROR_RELATIVE);
}
PERF_TEST_P(orb, extract, testing::Values(ORB_IMAGES))
@@ -72,6 +72,6 @@ PERF_TEST_P(orb, full, testing::Values(ORB_IMAGES))
TEST_CYCLE() detector(frame, mask, points, descriptors, false);
perf::sort(points, descriptors);
SANITY_CHECK_KEYPOINTS(points);
SANITY_CHECK_KEYPOINTS(points, 1e-8, ERROR_RELATIVE);
SANITY_CHECK(descriptors);
}