2
votes
1answer
87 views
How do I create an OpenCV image from a PIL image?
I want to do some image processing with OpenCV (in Python), but I have to start with a PIL Image object, so I can't use the cvLoadImage() call, since that takes a filename.
This …
4
votes
4answers
151 views
python image recognition
hi, what I want to do is a image recognition for a simple app:
given image (500 x 500) pxs ( 1 color background )
the image will have only 1 geometric figure (triangle or square …
2
votes
3answers
92 views
PIL Best Way To Replace Color?
I am trying to remove a certain color from my image however it's not working as well as I'd hoped. I tried to do the same thing as seen here http://stackoverflow.com/questions/7657 …
5
votes
3answers
86 views
How to use PIL to resize and apply rotation EXIF information to the file ?
Hello,
I am trying to use Python to resize picture.
With my camera, files are all written is landscape way.
The exif information handle a tag to ask the image viewer to rotate in …
0
votes
3answers
228 views
Snow Leopard Python 2.6 problems getting PIL to work
I installed libjpeg and PIL, but when I try to save a JPG image, I always get this error:
ImportError: The _imaging C module is not installed
Any help much appreciated!
I tried …
0
votes
1answer
34 views
Preserving extent from the old image
I am using PIL 1.1.6, python 2.5 on windows platform.
In my program I am performing point operation (changing the pixel values) and then saving the new image.
When I am loading t …
1
vote
0answers
43 views
Error using the python jpeg module to write EXIF information to a jpeg file.
I am using PIL to resize some images. I would like to keep the EXIF information and I found here how to do so.
But, I doesn't seams to work with my Nikon files :
File "/Library/P …
2
votes
1answer
99 views
PIL vs Python-GD for crop and resize
Dear Stackoverflow'ers,
I am creating custom images that I later convert to an image pyramid for Seadragon AJAX. The images and image pyramid are created using PIL. It currently …
0
votes
2answers
39 views
In Python, Python Image Library 1.1.6, how can I expand the canvas without resizing?
I am probably looking for the wrong thing in the handbook, but I am looking to take an image object and expand it without resizing (stretching/squishing) the original image.
Toy …
1
vote
1answer
72 views
How to iterate over columns of an image?
I want to transform images like this to add an effect to pictures in django as described here.
I decided to implement it as a process for the great django-imagekit/photologue
M …
6
votes
7answers
2k views
Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2
I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacin …
0
votes
1answer
45 views
Histogram in matplotlib gets cropped at top
I have a Python program that generates a histogram using matplotlib. The problem is that the images that are generated sometimes get cropped at the top. First, here's the relevan …
1
vote
3answers
88 views
App Engine image resize without maintaining aspect ratio?
When I call resize on images using app engine, they maintain their aspect ratio - I don't end up with the size I ask for.
I'm trying to make rectangular pixel NTSC images from squ …
1
vote
2answers
89 views
What is needed to add an paperprint-like effect to photos in python?
I want to transform photos in python to look like this:
taken from doctype.com
I will use it in django, PIL is installed.
How can I achieve this?
0
votes
2answers
30 views
Scaling images stored at S3
I'm in a situation where I need to push image storage for a number of websites out to a service that can scale indefinitely (S3, CloudFiles, etc.). Up until this point we've been a …
