You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
&& !(ssize.width > 0xffffFFFF || ssize.height > 0xffffFFFF)// Restrict image size since internal index evaluation
107
107
// is performed with u32
108
108
#endif
109
-
&& dsize.width >= 2 && dsize.height >= 8)
109
+
&& dsize.width >= 2 && dsize.height >= 8
110
+
&& (2*dsize.width != ssize.width || 2*dsize.height != ssize.height)) // 2x downscaling is performed as area in OpenCV which differs from this implementation
0 commit comments