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
This PR: #1050 modifies the interpolation to use Image.Resampling.LANCZOS
Although the resize happens using cv2.resize which does not treat it as LANCZOS rather the enum evaluates to constant 1 which is CV_INTER_LINEAR
This PR: #1050 modifies the interpolation to use
Image.Resampling.LANCZOS
Although the resize happens using
cv2.resize
which does not treat it asLANCZOS
rather the enum evaluates to constant1
which isCV_INTER_LINEAR
https://github.com/npinto/opencv/blob/master/modules/imgproc/include/opencv2/imgproc/types_c.h#L318C1-L325C3
Is this intended or atleast known?
The text was updated successfully, but these errors were encountered: