Cykooz / fast_image_resize

Rust library for fast image resizing with using of SIMD instructions.
Apache License 2.0
312 stars 29 forks source link

Provide 100% interoperability with image-rs library #42

Open qarmin opened 3 weeks ago

qarmin commented 3 weeks ago

When trying to add this library to project - https://github.com/qarmin/img_hash/pull/24, I found that almost all algorithms gives different results than image-rs.

Even nearest algorithm gives sometimes different result.

There is also a missing Triangle algorithm.

It would be great to replace image-rs, without needing to bother with compatibility problems

Cykooz commented 1 day ago

image::imageops::Triangle should be equivalent to FilterType::Bilinear from fast_image_resize