Collyn O'Kane

Results 15 comments of Collyn O'Kane

I think by default the ffmpeg encoder uses a global palette quantized for every color in the animation with a `sierra2_4a` dither. https://ffmpeg.org/ffmpeg-filters.html#palettegen https://ffmpeg.org/ffmpeg-filters.html#paletteuse You can see an example generated...

Thanks. I'll try to answer. > convergence factor do you have anymore info on it and how adjustments effect it? The convergence factor is a distance metric for how much...

That's great to hear. Sorry for the late response, somehow I missed a notification. Your blogs were fun to read because I went down a very relatable path trying to...

I haven't bundled a crate of my own yet but I've been meaning to. I'm checking out the book now, I never fully read this part before https://doc.rust-lang.org/cargo/reference/publishing.html I can't...

To learn more about [no_std], I looked into making gradient [no_std] enabled and [built it successfully](https://travis-ci.org/okaneco/palette/jobs/627020703#L1852) for `thumbv6m-none-eabi`. Since the [`alloc` crate](https://doc.rust-lang.org/alloc/index.html) has been stabilized, you can use some collections...

Yes, it seems like it'll be the last color model for a while. It corrects for some of the distortions in hue and chroma spacing that are still present in...

You can achieve this with Mix or gradients already, it's my preferred way of blending colors too. There are some examples of gradients in the README.md and example programs at...

I tried working on this a bit but ran into a stumbling block for cylindrical color spaces. How should the various RGB Hue spaces be treated, LcH, etc.? Would their...

I experimented with changing `GenericImageView::get_pixel` to return `Option` and `GenericImage::get_pixel_mut` to return `Option` in this branch https://github.com/okaneco/image/commit/710d0441ecbf5acd454b25887fc6be5da5e76e20 and it passes tests locally. The relevant library changes occupy the first 55%...

I started working on this and had a few questions. ### What's changing? Current traits https://docs.rs/image/latest/image/trait.GenericImage.html https://docs.rs/image/latest/image/trait.GenericImageView.html ```diff // pub trait GenericImageView { - fn get_pixel(&self, x: u32, y: u32)...