Kirill Kuzminykh

Results 55 comments of Kirill Kuzminykh

> a little bit confused by using f64 I copied it from `Pillow` - https://github.com/python-pillow/Pillow/blob/main/src/libImaging/Resample.c I don't know why they decided to use `double` instead of `float`.

@webknjaz I think that this repo is dead. I can't merge my pull-requests into it because I don't have permission to remove Travis CI from a pull-request checking process. My...

@webknjaz Yes, I want to maintain this project. It will be cool if you elevate my privileges for this repo.

I have not yet done a benchmark to measure the speed of opencv. I plan to do that after I add multithreading support. Because, as I understand it, opencv already...

@bend-n Thank you for your work.

@bend-n I have only one note about your opencv benchmark. OpenCV doesn't have Lanczos3 implementation. It has only Lanczos4. Lanczoz4 is more complicated (requires more calculations) than Lanczos3.

I have found out that OpenCV returns incorrect results if we downscale image with different interpolations. All results, except INTER_AREA, look like INTER_NEAREST. With such results I'll can't make any...

Upscaling looks better. I don't know why downscaling is so bad.