Merge pull request #26757 from shyama7004:test-fix

fix threshold for photo_calibratedebevec regression test
This commit is contained in:
Alexander Smorkalov 2025-01-13 10:25:18 +03:00 committed by GitHub
commit d6f60d4ab8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,7 +228,7 @@ TEST(Photo_CalibrateDebevec, regression)
double max;
minMaxLoc(diff, NULL, &max);
#if defined(__arm__) || defined(__aarch64__)
ASSERT_LT(max, 0.131);
ASSERT_LT(max, 0.2);
#else
ASSERT_LT(max, 0.1);
#endif