1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #17287 from tomoaki0705:fixAkazeTestFailureMali

This commit is contained in:
Alexander Alekhin
2020-05-14 06:59:27 +00:00
@@ -51,7 +51,7 @@ OCL_TEST_P(Feature2DFixture, KeypointsSame)
for (size_t i = 0; i < keypoints.size(); ++i)
{
EXPECT_GE(KeyPoint::overlap(keypoints[i], ukeypoints[i]), 0.95);
EXPECT_NEAR(keypoints[i].angle, ukeypoints[i].angle, 0.001);
EXPECT_NEAR(keypoints[i].angle, ukeypoints[i].angle, 0.05);
}
}