Aurelia Molzer
Aurelia Molzer
I fear I have no idea how to interpret this. What do I need to be able to explore it just like in that image? Which tools did you use...
Thanks, didn't know you can simply load one that way :) So, the hard numbers important here are (everything in percent of the total time): * `85.9%` spent in `inflate::InflateStream::update`...
@mpizenberg Maybe after an optimization in `inflate`, this still could seem slow. The volume of shuffled memory (through `memmove` and `memcpy`) is rather high in any case but that may...
@mpizenberg This is awesome, appreciate your hard work! Reopening this as tracking performance improvements since it both demonstrates possible improvements and contains a link to reference code. Switching the decoder...
It does however not preallocate anything :smile: https://github.com/PistonDevelopers/imageproc/blob/2f1f073218535fcdc6e235cd19bcccfd7e968cb9/src/corners.rs#L60-L74 I don't see the possibility to sensibly preallocate within the function–but I don't know much about FAST–but when we'd return a custom...
That's https://github.com/image-rs/lzw/issues/28 which is not strictly valid but probably should be permitted in any case. I've got any easy fix but not sure if it shouldn't be configurable in weezl...
I should add, the only reason this is an issue is because surprisingly we didn't come across any case sooner. Do you have any information what encoder may have been...
As expected, didn't hurt to ask. You can PM me the URL on Discord so I can add some similar to my sample collection. And for my viewing pleasure since...
Right, `EXIF` parsing is currently being treated as out-of-scope for the library. Instead, we report the raw binary form and push the interpretation of human rendering intent to an upper...
FWIW, my stance is that we're already doing far too much implicitly. Some of it should be available as _options_ in `image` on explicit request though. Many images, including jpeg,...