As discusses during a blog post on the subject , JPEG libraries exist already for the Arduino platform. However, many of those are aimed toward 8-bit platforms with tiny amounts of RAM. While it’s possible to decode JPEGs piece by piece with some intelligent code under these conditions, it’s possible to travel much faster when you’ve got a touch more headroom. Does an excellent job of explaining the variability of optimizations, developed within the 20 years since writing his first JPEG decoder back in 1994. From eliminating unnecessary marker checks to ignoring unneeded data for scaled-down output, it all adds up to urge the work done faster. The library targets the Cortex-M0+, or any chip with a minimum of 20K of RAM, as its bare minimum to work .
Faster chips with higher clock rates naturally do better, and provides benchmark decoding times for various common hardware using the library.
No comments:
Post a Comment