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

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
+1 -1
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