Sergey "Shnatsel" Davidoff

Results 305 issues of Sergey "Shnatsel" Davidoff

I'm using this image for testing, because I've found it's quite sensitive to compression artifacts: [input.jpeg](https://github.com/user-attachments/assets/4abdfa45-5b41-492f-afb2-119c18856e32) imagemagick (both official builds of 7.x and a version from Ubuntu 22.04 repositories) at...

`imageproc` has a number of external dependencies that are always pulled in, even if I don't use the functionality they provide. For example, `ab_glyph` and its dependencies are always pulled...

When decoding an image from a file, the `image` crate gives you an instance of [`DynamicImage`](https://docs.rs/image/latest/image/enum.DynamicImage.html) which can be in one of many color spaces. Applying image processing operations from...

This would make the error type much nicer to work with. In particular, I want to be able to present a human-readable message to the user rather than just an...

Rust now RustFFT relies on `#[target_feature=...] unsafe fn` functions for runtime detection of SSE and AVX. This obscures which operations are actually unsafe, such as loads/stores by raw pointer, and...