1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00
author vrooomy <vj.bro.833@gmail.com> 1773655621 +0530
committer vrooomy <vj.bro.833@gmail.com> 1774357668 +0530

 added SIMD support for 64 bit float and fallback for 64 bit int

removed trailing white-spaces

add SIMD optimization for 32 unsinged int and clean fallback for 64u and 64s

add SIMD support for 32u and fallback for 64u and 64s

changed CalibrateDebevec test threshold to 0.25 (same as ARM) for IPP=NO

relaxed threshold to 0.22

conflict resolved
This commit is contained in:
vrooomy
2026-03-16 15:37:01 +05:30
parent 2d15169ab5
commit 185b48cfd6
+2
View File
@@ -288,6 +288,8 @@ TEST(Photo_CalibrateDebevec, regression)
minMaxLoc(diff, NULL, &max);
#if defined(__arm__) || defined(__aarch64__)
ASSERT_LT(max, 0.25);
#elif !defined(HAVE_IPP)
ASSERT_LT(max, 0.22);
#else
ASSERT_LT(max, 0.15);
#endif