Skip to content

Commit

Permalink
fix test failure on Mali T760 and Mali T628
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoaki0705 committed May 13, 2020
1 parent 6630eac commit 35245cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/features2d/test/ocl/test_feature2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 35245cb

Please sign in to comment.