Kirill Kuzminykh

Results 55 comments of Kirill Kuzminykh

Please, merge this PR. I think that a signing of Contributor License Agreement is not working. ![изображение](https://user-images.githubusercontent.com/163725/100485612-c688ef00-3111-11eb-8c47-f7f74d9bfb85.png)

@asvetlov Can you switch off Travis CI and codeconv checks for pull requests? Travis CI don't start building of project and show follow text: _"Builds have been temporarily disabled for...

The current implementation does nothing special with pixel components and knows nothing about color space of image. The main feature of this crate is the use of SIMD instructions of...

I've added support of U16x3 pixels. For now without optimizations using SIMD.

v0.8.0 - Added optimisation for convolution of U16x3 images with helps of ``SSE4.1`` and ``AVX2`` instructions.

In version 2.0.0 I added [PixelComponentMapper](https://docs.rs/fast_image_resize/2.0.0/fast_image_resize/struct.PixelComponentMapper.html) structure that allows you to create colorspace converters for images whose pixels based on u8 and u16 components. Source and destination images for mapper...

Sorry but I use Windows for playing games only. I could not help you with compiling Rust applications for Windows at this time. May be in future I will have...

The `interpolation` argument of the [resize() function](https://docs.opencv.org/4.x/da/d54/group__imgproc__transform.html#ga47a974309e9102f5f08231edc7e7529d) has no value which mentions a Gaussian kernel: https://docs.opencv.org/4.x/da/d54/group__imgproc__transform.html#ga5bb5a1fea74ea38e1a5445ca803ff121

You can use [custom filter](https://docs.rs/fast_image_resize/3.0.4/fast_image_resize/enum.FilterType.html#variant.Custom) to implement Gaussian filter. In other libraries (Pillow, libvips, OpenCV) I didn't see the use of Gaussian kernel for an "universal" resize function. Usually these...

Thank you for link to Gaussian implementation from image-rs. I will use it to add Gaussian filter into ``fast_image_resize`` in future.