Python Imaging Library, also known as PIL, adds image processing capabilities to your Python interpreter.
1
vote
1answer
153 views
Python: process image and save to file stream
I need to process an image (apply filters and other transformation) using python and then serve it to the user using HTTP. Right now, I'm using BaseHTTPServer and PIL.
Problem is, PIL can't write ...
0
votes
2answers
208 views
performance concern, Python vs C
I was using PIL to do image processing, and I tried to convert a color image into a grayscale one, so I wrote a Python function to do that, meanwhile I know PIL already provides a convert function to ...
0
votes
0answers
26 views
Can't access PIL on AppEngine local dev server (OS X 10.8, Python 2.7) [duplicate]
Possible Duplicate:
how to install PIL on mac os x 10.7.2 Lion
I'm having a problem accessing PIL (Python Imaging Library) when running AppEngine local development server (OS X 10.8.2, ...
2
votes
2answers
423 views
Segment an image using python and PIL to calculate centroid and rotations of multiple rectangular objects
I am using python and PIL to find the centroid and rotation of various rectangles (and squares) in a 640x480 image, similar to this one
So far my code works for a single rectangle in an image.
...
-1
votes
1answer
63 views
how to install Python Imaging library on ubuntu11.10
can anybody help me out, how to install python imaging library.I am using ubuntu 11.10 and python 2.7.2.
I Google but not able to find appropriate link.
thank you.
1
vote
1answer
205 views
Python PIL with littlecms support on Ubuntu
I'm having trouble setting up python PIL with littlecms support. I don't see any good tutorials from my googling.
Here are my main questions:
What is the name of the Ubuntu package that needs to ...
0
votes
1answer
334 views
Python PIL - Save to mimetype “image/jpeg”, not “image/pjpeg”
I'm currently working with Tweepy in trying to update a profile picture. Tweepy supports up to three different mimetype formats, 'image/gif', 'image/jpeg', 'image/png'.
Using PIL, I'm trying to ...
1
vote
1answer
91 views
Undo in Gui for images
I have Gui that show image and few buttons for B&W, mirror etc.
I need to implement a undo button that call to undo function, which, obiviously, undo the last action that was made on the image.
I ...
-1
votes
1answer
212 views
Showing image in Gui [closed]
I need to implement a function in Gui so you press the buttuon mirror, it calls the function flip, and display the img in the Gui.
Assume that the picture inserted to mirror/flip is B&W img.
I ...
1
vote
2answers
286 views
Automatically cropping an image with python/PIL
Can anyone help me figure out what's happening in my image auto-cropping script? I have a png image with a large transparent area/space. I would like to be able to automatically crop that space out ...
0
votes
1answer
188 views
django PIL image upload / display problems
I am trying to get django to show pictures. Ive installed PIL and it seams to work.
i am running py 2.7, win 7, the developement server and sqlite3
my static root:
STATIC_ROOT = ...
2
votes
1answer
122 views
Python how do I overlay random images over images being generated to end up with 2 images with text
Here is my code that I have so far. What it does is grabs a random text line from the text file an generates a random color then creates the JPG image with the text on top. What I want to do is take a ...
0
votes
4answers
140 views
Install PIL works for sudo, can't use in venv
Thank you for taking the time to look at my question.
I'm working in Ubuntu 10.04. The default python on my machine is 2.6. I created a virutalenv with python 2.7. I am writing a django app to be run ...
3
votes
1answer
367 views
How does perspective transformation work in PIL?
PIL's transform-function has a perspective-mode which requires an 8-tupel of data but I can't figure out how to convert let's say a right tilt of 30 degrees to that tupel.
Can anyone explain it?
...
0
votes
2answers
214 views
Can't Install PIL 1.7
I have python 2.7.3 and I want to install PIL 1.7.
I downloaded "PIL-1.1.7.win32-py2.7" and try to install it but it shows me an error messege that it can't find python 2.7 in the registry.
...
1
vote
1answer
227 views
How to convert a pygame Surface to a PIL Image?
I'm using PIL to transform a portion of the screen perspectively.
The original image-data is a pygame Surface which needs to be converted to a PIL Image.
Therefore I found the tostring-function of ...
0
votes
1answer
99 views
How do I convert image path to image object I can use ImageChops on?
I'm trying to add all the .tiff files in a directory together using ImageChops, but I keep on getting the error 'IOError: cannot identify image file'. I thought it was just a problem with trying to ...
1
vote
1answer
387 views
Linux Mint 14 & python PIL gives <decoder jpeg not available> error
I am trying to upload and resize an image using PIL on Django 1.4.1.
I have tried this: http://stackoverflow.com/a/10109941/356875
but nothing changed.
I use virtualenv and when I do pip install ...
2
votes
1answer
330 views
Convert image from PIL to openCV format
I'm trying to convert image from PIL to OpenCV format. I'm using OpenCV 2.4.3.
here is what I've attempted till now.
>>> from PIL import Image
>>> import cv2 as cv
>>> pimg ...
1
vote
2answers
350 views
installing libjpeg for pil and Google app engine on mac Mountain Lion
I'm sure there's a duplicate of this somewhere out there but I looked and am about at the end of my rope. I'm trying get PIL working on my mac OS X 10.8 so that I can use dev_appserver.py to test an ...
3
votes
2answers
323 views
Python: Displaying a grayscale Image
My aim:
Read an image into the PIL format.
Convert it to grayscale.
Plot the image using pylab.
Here is the code i'm using:
from PIL import Image
from pylab import *
import numpy as np
...
2
votes
3answers
250 views
Convert EMF/WMF files to PNG/JPG
I am receiving an form upload with a Word docx document. I got all the parsing done successfully. I have to then display that Word document on the web.
The problem I am running into at this moment is ...
0
votes
1answer
97 views
Python: Want to change image HSL like photoshop
I would like to implement this feature(changing HSL with that colorize ticked) in Python, preferable using PIL or maybe numpy.
Can someone explain how this works?
As far as I know is to use the ...
-2
votes
1answer
228 views
Python PIL Detect if an image is completely black or white
Using the Python Imaging Library PIL how can someone detect if an image has all it's pixels black or white?
Condition: Not iterate through each pixel!
4
votes
2answers
166 views
How do I locate the rabbit?
I am trying to follow the rabbit in the game winterbells. Here are some screenshots
Originally I thought that I could follow a color that only the rabbit had, but it seems that all the objects (i.e. ...
1
vote
1answer
100 views
wxpython - converting PIL.ImageFont to wx.Font or wx.Bitmap
Background:
I am writing a module to create custom splash screens with multiple progress bars (0-5). The splash screen can display in multiple modes (full screen frame-less, % of screen w/wo frames, ...
1
vote
0answers
48 views
PIL - generated picture as a GIF animations in django [duplicate]
Possible Duplicate:
Programmatically generate video or animated GIF in Python?
My idea is very simple: PIL script on a Django-powered website generates a picture and this picture is then ...
1
vote
2answers
124 views
how to speed up drawing masive circles in python PIL
In python PIL lib, I'm using
>>> draw.ellipse((x - r, y - r, x + r, y + r))
to draw circle as nodes. However, since there are thousands of nodes to draw, this takes too long.
Is there ...
4
votes
2answers
433 views
Insert image into Reportlab either from PIL image or StringIO
I'm trying to insert a barcode image into Reportlab. I know there are a lot of questions asked on this, but all of them assume that you already have the image file in the directory or on the ...
4
votes
1answer
125 views
Convert pyBarcode output to PIL Image file
I am trying to convert the output of pyBarcode to a PIL Image file without first saving an image. First off, pyBarcode generates an image file like such:
>>> import barcode
>>> ...
3
votes
1answer
228 views
python create jpg file from raw data
I have this strange xml file which apparently contains jpeg image data:
<?xml version="1.0" encoding="UTF-8"?>
<AttachmentDocument xmlns="http://echa.europa.eu/schemas/iuclid5/20070330" ...
2
votes
2answers
225 views
using subsample with PhotoImage in Tkinter and PIL
i folks,
I'm trying to use the subsample method in the PhotoImage class to resize an image I have in a list that links to a Label widget in Tkinter but python says there is no such method. I know I ...
1
vote
1answer
312 views
Retain unchanged data when saving Numpy array to image with Scipy imsave
When saving a 2-dimensional Numpy array (of single values) with Scipy toimage or imsave the pixel values do not exactly match those in the Numpy array. Instead there are areas, mostly at edges, where ...
2
votes
3answers
404 views
Comparing image in url to image in filesystem in python
Is there a quick and easy way to do such comparison?
I've found few image compare questions from stackoverflow but none of those actually proved answer for this question.
I have images files in my ...
0
votes
0answers
158 views
django-imagekit How to save thumbnails image?
This example of code doesn't generate any errors, but also doesn't create any thumbnails in proper folder:
from imagekit.models.fields import *
from imagekit.processors import ResizeToFill, ...
0
votes
2answers
88 views
PIL resizing image
image.thumbnail((128, 128), Image.ANTIALIAS)
PIL sets the height of the new image to the size given(128 here) and calculate the width to keep the aspect ratio.
Is there a way to set width to 128 ...
1
vote
1answer
124 views
can PIL open an image using pyqt4 resource file?
Can PIL open an image using pyqt4 resource file?
from PIL import Image, ImageWin
import res_rc #resource file
image = Image.open(":/images/image.png")
dim = ImageWin.Dib(image)
I'm getting this ...
1
vote
1answer
83 views
merge tif images using image.merge
I am trying to merge 4 tifs together to form a CMYK image.
This is the code that I have so far:-
import Image
m = "C:\Documents and Settings\dbigwood\Desktop\TEST\magnew.tif"
c = "C:\Documents and ...
0
votes
3answers
160 views
importing PIL image has problems
I want to work with Image module in PIL
If I do the following
import PIL
PIL.Image.open()
It says that there is no module named Image.
But the following works fine
from PIL import ...
3
votes
2answers
198 views
PIL cut off letters
i've spent a lot of time making my first web application using python, and for generating images - PIL.
after reading a lot i've managed to implement proper text aligning, wrapping, generating files ...
1
vote
1answer
57 views
numpy.equal with nested lists
I'll want to search a rectangle in a picture. The picture is gathered from PIL. This means I'll get a 2d-array where each item is a list with three entries for the colors.
To get where's the ...
2
votes
1answer
334 views
PIL merge of two images with alpha channels - not working as expected
There's a bunch of questions here on SO which provide answers to the present question, however the output is not the expected.
The goal is to merge two RGBA images. The information on the alpha ...
1
vote
1answer
238 views
loading image from filesystem google app engine
Is it possible to use the google app engine python imaging library, from a python script, to load an image file from the local filesystem? Or must images be loaded from the datastore? I can ...
3
votes
2answers
251 views
Bezier Curve using static points
So I found this code on line and it does a random Bezier Curve which uses random points. I was trying to make it non random so that it would use static points I got it to use only 4 points which was ...
0
votes
1answer
123 views
Why the image color is changed after affine transform using PIL?
I am using image.transform in the Python Imaging Library to apply affine transform to a image of face detection to calibration the face accordding to the position of eyes. The result is right but the ...
0
votes
0answers
240 views
Image module missing - Python
Im have problems using the Image2Map.py file on a Mac OS X Lion 10.7.4 operating system. It says it cant find the Image module. So I have been round the houses and eventually found how to install the ...
1
vote
3answers
834 views
python captcha decoder library
I need a Captcha decoder for python to read simple image captchas like the following picture:
Do you know of a library that can help me read this captcha?
If you don't know of a library for ...
3
votes
1answer
290 views
Python (PIL): Lighten transparent image and paste to another one
I have two png-images (A & B) of the same size, the second (B) one is partially transparent.
If I paste image B into image A using the code
base.paste(overlay, mask=overlay)
I get a nearly ...
5
votes
4answers
362 views
Image Comparison for vector images (based on edge detection)?
I've been going through posts and examples for the past two days and all snippets Ive tried and extensively tested have proven to be quite useless, at least for my purposes.
What I want to do is ...
1
vote
1answer
479 views
Adding a background image in python
I'm trying to add a background image to a canvas in Python. So far the code looks like this:
from Tkinter import *
from PIL import ImageTk,Image
... other stuffs
root=Tk()
canvasWidth=600
...

