ripytide
ripytide
Switched `RadixHeapMap::push()` to return a Result rather than simply panicking when given a greater key than the current top key. This is a nicer API to work with as it...
This makes the library more flexible to allow users more easily use newtype wrappers for things like `std::ops::Sub`, such as for use-cases mentioned in #21 Based off of #22, so...
Following from https://github.com/jeffparsons/rangemap/pull/78
Work in Progress, I'll summarize the changes after I get it compiling.
I've been looking through the currently open issues and a lot of the bug reports are issues with a particular encoder/decoder not working as expected with a particular image when...
From #1523 it was discussed that renaming `ImageBuffer` to `PixelImage` or similar would be beneficial to emphasize the strong dependence on `Pixel` types like `Rgb` and `Luma` over other formats,...
### Tracking Table #### Key - 🟥: Not yet in `imageproc` - 🟧: In `imageproc` but not yet released. - 🟪: Released in `imageproc` but still in `image` - 🟩:...
Although not actually released yet, when `v0.9` is released it should have several `Pixel` traits that are just as powerful or more than the one used already in this crate....
Inspired by https://github.com/image-rs/image/pull/2268, the same reasoning applies to `imageproc` function I think.
Fixes #626