fast_image_resize
fast_image_resize copied to clipboard
Equivalent to OpenCV `cv2.INTER_LINEAR`
Hello is it possible to achieve exactly same results with this library as if I was using cv2.resize
with interpolation=cv2.INTER_LINEAR
from OpenCV?
I tried using Resizer::new(Convolution(Bilinear))
but the pixel values in the resulting image are slightly different.
Thanks