vote up 1 vote down star
3

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?

flag

27% accept rate

4 Answers

vote up 13 vote down check

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.

link|flag
vote up 4 vote down

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.

link|flag
1  
Did you use Google at all before asking this question? :-) I'm not saying that you should, just that it seems a bit funny to answer your own question in less than a minute. – Richard Franks Sep 18 '08 at 17:52
The whole idea of this site is to provide (question,answer) pairs which will serve as useful information for someone searching on the subject. It is encouraged that if you find out something useful you did not know before, and it isn't already on the site, that you share it with StackOverflow. – akdom Sep 18 '08 at 18:17
1  
From the FAQ: It's also perfectly fine to ask and answer your own programming question, but pretend you're on Jeopardy: phrase it in the form of a question. Although, I think this question could easily be answered by anyone in need quickly through a google search... – Martin W Sep 18 '08 at 18:36
vote up 2 vote down

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.

link|flag
vote up 0 vote down

I have done some basic image processing in PIL. You can check it out on my blog

http://prabhatgodse.blogspot.com/2009/10/fun-with-image-processing-in-python.html

link|flag

Your Answer

Get an OpenID
or

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