Looking for a bunch of optimized image processing utility functions. Like: Resize with Cubic Interpolation, Rotate, Crop, Change a Color to a different Color. Much like what the GIMP has. But without the license and bloat of The GIMP.

  • Must be Free and Open Source, preferably not GPL, unless it is best
  • Must have comprehensive / good documentation for beginners (to image processing).
  • Must be faster than ImageMagick, or any of its forks (GraphicsMagick).
  • Must include a bunch of 'actual algorithms', in the vein of a image manipulator like The Gimp. Not just a bunch scientific algorithms for which I have no use.

...

  • Doesn't need to support image file formats (e.g. import from a GIF).
  • Doesn't need to support more than 24-bit color.
  • Doesn't need to be the fastest, but speed needs to be better than academic.

Answer

I am using ImageMagick (or Magick++ its library) to render the final GIF animation because it is relatively fast at doing so. For the rest, the operations are so simple that I am using the 'unofficial' GIF decoder library from sourceforge to decode to a array. Then, taking the array of raw image data and; Crop / Color Change in a standard C++ for-loop.

For True Super Optimized uses, it looks like other people on StackOverflow are recommending OpenCV or Boost's GIL (by Adobe). They both contain good primitives and OpenCV also contains alot more algorithms which are optimized for speed.

link|improve this question

This question is very subjective and has no definitive answer. What is "super bloated"? What is "just a bunch of vertices"? – Nicol Bolas Aug 22 '11 at 4:09
1  
Look at ImaheMagick again. – n.m. Aug 22 '11 at 4:26
@Nicol I fixed these issues with an edit... Thanks. It's subjective because I have a very specific problem with GIFs and ImageMagick and slowness. – unixman83 Aug 22 '11 at 7:06
feedback

closed as not constructive by Nicol Bolas, Kirill V. Lyadvinsky, Michael Petrotta, Mat, Jens Gustedt Aug 22 '11 at 6:29

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

Your question looks very subjective. Still look at the Boost Generic Image Library, it is open source.

link|improve this answer
Thank you. However, in my case it was better to just use plain C and code it myself. Good enough to be marked answer still – unixman83 Aug 22 '11 at 7:11
feedback

I really recommand you ImageMagick. If you want to use a lightweight library for manipulating an image, FreeImage will be also good choice.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.