I've recently come across a problem which requires at least a basic degree of image processing, can I do this in Python, and if so, with what?
|
closed as not constructive by Robert Harvey♦ Jul 24 '12 at 19:56
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The best-known library is PIL. However if you are simply doing basic manipulation, you are probably better off with the Python bindings for ImageMagick, which will be a good deal more efficient than writing the transforms in Python. |
|||||||||
|
|
You also have an approach to image processing based on "standard" scientific modules: SciPy has a whole package dedicated to image processing: scipy.ndimage. Scipy is in effect the standard general numerical calculations package; it is based on the de facto standard array-manipulation module NumPy: images can also be manipulated as array of numbers. As for image display, Matplotlib (also part of the "science trilogy") makes displaying images quite simple. SciPy is still actively maintained, so it's a good investment for the future. Furthermore, SciPy currently runs with Python 3 too, while the Python Imaging Library (PIL) does not. |
|||||||||||||||
|
|
Depending on what you mean by "image processing", a better choice might be in the numpy based libraries: mahotas, scikits.image, or scipy.ndimage. All of these work based on numpy arrays, so you can mix and match functions from one library and another. I started the website http://pythonvision.org which has more information on these. |
|||||||||
|
|
To complete the list: opencv http://opencv.willowgarage.com/documentation/python/index.html |
|||
|
|
|
There is actually a wonderful Python Imaging Library (PIL). It gives you the ability to alter existing images, including anti-aliasing capabilities, and create new images with text and such. You can also find a decent introductory tutorial in the PIL handbook provided on the aforementioned site. |
|||||||||||||
|
|
If you are creating a custom image processing effect, you may find PythonPixels useful. http://halfhourhacks.blogspot.com/2008/03/pythonpixels.html It is intended for writing and experimenting with image processing. |
|||
|
|
|
You can find a nice tutorial for Image processing here: http://forum.marustudios.com/viewtopic.php?pid=50#p50 Helped me out quite a bit. |
|||
|
|
|
VIPS should be fast and uses multiple CPUs: http://www.vips.ecs.soton.ac.uk/index.php?title=Speed_and_Memory_Use |
|||
|
|
protected by Bo Persson Jul 24 '12 at 19:34
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.