vote up 17 vote down star
20

I would love find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin capabilities. I'm specifically looking for web based applications, but please answer for desktop apps as well if you like.

Libraries (and the common direct language support):

Also suggested:

Yuval Peled - Intel's new IntelĀ® Integrated Performance Primitives for image processing.

rics - RoboRealm has list of vision software.

Thanks for the suggestions!

flag

15 Answers

vote up 8 vote down

For Python, don't bother with PythonMagick. It's no longer maintained (afaik).

Instead, try the Python Imaging Library.

link|flag
vote up 6 vote down

While I love imageMagick it's been usurped by a fork called GraphicsMagic which is a multi threaded and signaficantly faster. It's not as popular but IIRC it's currently in use in production for livejournal or one of the other large blogging sites.

I also know ubuntu has a compatibility package that offers a drop in command line replacement of imagemagic with graphicsmagick.

link|flag
vote up 4 vote down

What do you want to do?
If you want low level image processing ( as in finding objects, tracking motion etc) then OpenCV, it's free and open and the algorithms are well reviewed.
If you want to be able to read lots of proprietry formats - probably python image library

link|flag
vote up 3 vote down

Disclaimer: I work for Atalasoft

For .NET applications, Atalasoft DotImage is written from the ground up for .NET (doesn't use COM Interop or non-assembly dlls), has 150+ different image processing commands, AJAX-based web viewing components, and run-time royalty-free licensing for desktop applications.

link|flag
vote up 2 vote down

For C++ apps I would use CxImage, now at v6:

http://www.xdp.it/cximage.htm

Brilliant library.

link|flag
vote up 2 vote down

My main experiences are with processing video streams.

I have used Intel Performance Primitives when writing c++ code and found it to be good. But this was back when it was free.

For writing C# .net stuff I have tried:

AForge - has a lot of functions but uses the Bitmap object for passing image data which makes it too slow for processing a video image. This is going to be changed in the future.

Emgu - is a wrapper around OpenCV. Has most of the OpenCV functions, takes a pointer to the image as an argument, as both an Image class and a CvInvoke class so you have the option of using the image object or just invoking the desired openCV function. Also easy to add OpenCV functions that are not already implemented.

link|flag
vote up 1 vote down

I'm a big fan of AForge.Imaging (http://code.google.com/p/aforge/)

It has a lot of low-level image processing, is relatively fast and free. Does use unsafe code, though.

link|flag
vote up 1 vote down

Another good library with high performance is Intel's IPL - Image Processing Library. I used it. I think it has only a C language interface. It provides many algorithms and data manipulations. And you can checkout the LeadTools that is commonly used in medical companies for medical CT/MR images processing. This one has .NET interface as well.

link|flag
vote up 1 vote down

I have used LeadTools in the past, as well as Pegasus. We found a bug with thier (Pegasus) library and they took forever to fix it and then when they did, they put it in a new version and were going to force us to upgrade to the new version. we went to find other librarys.

We are now using Atalasoft dotImage. We have run into some issues, one is bug we are waiting on fix for, the other they quickly helped me work around the issue. we are finding the AJAX thumbnail viewer and AJAX viewer are quite powerful, getting them to work in our application is tricky. I do like thier library it is easy to use and quite well written and designed.

Thier licensing on the other hand is quite expensive for servers, and devs. We had a PITA getting a license for a second developer so that he could dev and test the rest of the site (not the imaging part I work on). They wanted full dev seat even though he wasnt doing any image dev work. The server licensing is per core and then each addon is extra. It seems like they "nickle and dime" (VERY loose terms as we are talking hundreds to thousands not nickle and dime)

So in conclusion I would say if you are doing desktop app, definately go with Atalasoft, but anything server based, check into the pricing carefully. And Pegasus I would avoid due to thier poor support and cust service, and they are harder to work with than Atalasoft. LEADTools was OK from what I remember but it was 2000-2004 when I really worked with it. And those are the only 3 I have really used and all in .Net

link|flag
(I am from Atalasoft): We have written this KB article for working around the License Compiler issues when you need to build pieces that you aren't working on without a license: atalasoft.com/kb/… – Lou Franco Oct 7 '08 at 13:57
vote up 1 vote down

RoboRealm compiled a huge list of vision software.

link|flag
vote up 0 vote down

For old-style CGI programs that were actual shell scripts back in time, I used netpbm. It's not really a library but a toolkit of programs that you can chain together through pipes (or temporary files) to do all sorts of image manipulations. It uses an ASCII based intermediary format that you can actually edit with a text editor.

link|flag
vote up 0 vote down

ImageMagick will definitely produce really sharp images, but it's not easy to install or manage. ImageMagick itself needs to be installed on the server, and then a compatinble version of MagickWand needs to be installed.

I've also found that it has a habit of creating massive temporary files of up to a GB or more and then dumping them into your /tmp directory, which you need to be careful of. It will also eat up a massive amount of memory unpredictably.

If you're working on a platform with plenty of memory, and don't need to worry about nuking your temp directly, ImageMagick is a good choice.

link|flag
vote up 0 vote down

Depends on your environment. For .NET development, either ImagXpress or ImageGear, both by Accusoft Pegasus.

The acquisition of Accusoft by Pegasus Imaging Corp. made it by far the largest provider of imaging SDKs.

ImageGear is also available in DLL form for C/C++ development. Both ImageGear and ImagXpress are available for ActiveX/COM development.

ImageGear also offers a Java toolkit.

For the fastest possible native image manipulation, PICTools is the optimal choice.

link|flag
vote up 0 vote down

Yet Another Disclaimer: I work for Aurigma.

Graphics Mill for .NET is a great SDK to develop apps with image processing functionality. It's available for x86-32 and x64 platforms. It's well-documented and has online technical support.

link|flag
vote up 0 vote down

Well, when I get to use Delphi, Graphics32 is a joy to use.

link|flag

Your Answer

Get an OpenID
or

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