提交 03e224ee 编写于 作者: A Alexander Alekhin

Merge pull request #19127 from asmorkalov:as/photo_fix_arm64

......@@ -227,7 +227,11 @@ TEST(Photo_CalibrateDebevec, regression)
diff = diff.mul(1.0f / response);
double max;
minMaxLoc(diff, NULL, &max);
ASSERT_FALSE(max > 0.1);
#if defined(__arm__) || defined(__aarch64__)
ASSERT_LT(max, 0.131);
#else
ASSERT_LT(max, 0.1);
#endif
}
TEST(Photo_CalibrateRobertson, regression)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册