Tagged Questions
0
votes
2answers
13 views
PIL and Python27 - Save a screengrab?
Here is the code
from PIL import ImageGrab
scrgrb = ImageGrab.grabclipboard()
scrgrbnum = 0
def saveimg():
scrgrb.save("screengrab.jpeg + str(scrgrbnum + 1)", "JPEG")
scrgrbnum = scrgrbnum + ...
0
votes
3answers
49 views
Convert List of strings to ints without removing 0
So I have a list of strings that I want to convert into a list of ints
['030', '031', '031', '031', '030', '031', '031', '032', '031', '032']
How should I go about this so that the new list does not ...
0
votes
1answer
17 views
Error installing Mezzanine cms on Windows 7
I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here.
I recreated my virtualenv, but i still get this error
i know that error is caused by pil ...
0
votes
0answers
26 views
Python - How to save a list as an image?
I generate a regular list. Is it possible to save this list as a JPEG image or PNG or whatever so that I can open the image and look at it? I am currently trying to figure it out using the python ...
-4
votes
1answer
86 views
Craps game simulation python? create a program in python based on the information below Craps game above and include the given requirements 1,2,3,4
Each round has two phases: "come-out" and "point". To start a round, the shooter makes one or more "come-out" rolls. A come-out roll of 2, 3 or 12 loses and is called "craps". Anyone betting on the ...
-1
votes
2answers
157 views
How to integrate simpleGUI with python 2.7 and 3.0 shell
I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell...
Thanks
0
votes
1answer
46 views
PIL Module and 500 Server Error when running foursquare connected app
I am getting the following errors even though I downloaded and installed PIL in for my foursquare connected app. Need some help please.
Could not initialize images API
500 Server Error
0
votes
0answers
14 views
How to get images data in the image object in Python? [duplicate]
How to get images data in the image object in Python?
I am trying to get image title, tag, comments and rating in the image object. but i can not find it.
0
votes
1answer
39 views
Fish swim in pygame
I want to use the python pygame module to make a 2D "fishtank".
Basically I will load a jpg image as background and load a gif animated image depicting fish swimming and make it move.
I know how to ...
1
vote
2answers
73 views
View a sequence of images using Python and NumPy
I am using python's pil library to display images. Now I have a sequence of frames to display as a video content. I have a np.array that contains the RGB values of all the frames.
Could not find a ...
0
votes
2answers
80 views
how does ImageFilter in PIL normalize the pixel values between 0 and 255 after filtering with Kernel or mask
how does ImageFilter in PIL normalize the pixel values(not the kernel) between 0 and 255 after filtering with Kernel or mask?(Specially zero-summing kernel like:( -1,-1,-1,0,0,0,1,1,1 ))
my code was ...
1
vote
0answers
98 views
“command 'gcc' failed with exit status 1” building PIL 1.1.7
I'm trying to build python-imaging and I get this error:
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ ...
2
votes
1answer
84 views
I can't display text over my tkinter image
I am trying to display text on top of my image but I cannot do do this, can anyone help please.
Code:
import Image and the graphics package Tkinter
import Tkinter
import Image, ImageTk
class ...
1
vote
2answers
133 views
How to bind spacebar key to a certain method in tkinter (python)
I am working on a project in python, and I made a method to draw a specific thing in tkinter. I want it so that whenever I press the spacebar, the image will redraw itself (run the method again ...
0
votes
1answer
30 views
PyDev reports import error for installed modules in site-packages but does run the code
I've just started using PyDev for Python 2.7 on MacOS 10.8.3. The only problem I have is that for the line...
from PIL import Image
It reports "Unresolved import: Image". However, I can run the ...
1
vote
1answer
142 views
Can't get Python Imaging Library to find JPEG support
This is on Mountain Lion (OSX 10.8.3). So I downloaded, built, and installed the assorted required libraries. I modified setup.py to refer to the right places...
TCL_ROOT = libinclude("/usr")
...
0
votes
0answers
23 views
I have got a 2-D array storing pixel value , how can i show them as an image [duplicate]
I have got the pixel value of an image patch as the following shows, but how should I show them as an image patch by using python? Is there a method in the PIL library?
array([[162, 162, 161, 162, ...
1
vote
1answer
79 views
Convert an image loaded using PIL to a Cimg image object
I am trying to convert a iamge loaded using PIL to a Cimg image object. I understand that Cimg is a c++ library and PIL is a python imaging library. Given an image url, my aim is to calculate the ...
-1
votes
1answer
166 views
Is it possible to implement a fire detection algorithm using python
I would like to implement a fire detection algorithm using Python.
I'm a Python fan - don't much know about C++.
I'm here about Simplecv - I think that it is easier than opencv
I have a good camera - ...
1
vote
1answer
176 views
how to install libjpeg for pil on windows
I'm converting images formats on windows using python 2.7 and PIL.
Trying to convert an image to JPG raises this exception:
KeyError('JPG',)
Traceback:
...\PIL\Image.py", line 1429, in save
...
-1
votes
2answers
164 views
Downloading an image with python [closed]
So, I have been searching a lot in different places to see if I can download a png imge. The location of the png image url is: http://www.hackthissite.org/missions/prog/2/PNG/
This is what I am ...
0
votes
1answer
80 views
Python Imaging Library loop performance getting slower with repetition
I have written a simple function to resize an image from 1500x2000px to 900x1200px.
def resizeImage(file_list):
if file_list:
if not os.path.exists('resized'):
...
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, ...
1
vote
1answer
230 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 ...
1
vote
1answer
101 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
1answer
243 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 ...
0
votes
1answer
157 views
pyhon tkinter how to get values from entry box
I want to take the values from the entry box that opens and have them become the values in crop1. I'm new to tkinter and programming so I'm not sure on how to get the values into the function. Sorry ...
0
votes
2answers
435 views
python tkinter how to bind key to a button
New to programming and especially python and tKinter. How can I create a way to bind the key "s" to the button or the function sharpen? Any help would be awesome.
from Tkinter import *
from PIL ...
1
vote
2answers
549 views
python PIL and tkinter; brightening image and displaying it
What I want to be able to do is open a window with two images (one image is an exact copy of the other). Then when I click a button it changes the image on the right. I hope this is making sense. The ...
0
votes
0answers
329 views
Using Python, How can I hide a watermark inside another image using PIL?
The watermark needs to be encoded by making pixels from the image ‘even’ where the
corresponding watermark pixel is black and ‘odd’ where the corresponding watermark
pixel is white.
Function ...
1
vote
1answer
74 views
pix[x,y] from PIL produces name error
I am a beginner programmer and I am trying to access pixel data from a picture using python. I want to eventually get the pixel data into an array. I searched the web for the code of how to do this ...
1
vote
1answer
272 views
Why doesn't PIL load locally while running Google App Engine Python 2.7 Mac OSX?
I am using Google App engine on Mac OSX 10.7.4. When I load PIL from the commandline, everything works fine. However, when I load it from the GAE local environment, i.e.:
import Image
Gives me ...
1
vote
1answer
309 views
Tornado and PIL: open image from headers
My Tornado app receive the image in headers. So, I want to re-size it and store it. But I have trouble with opening image - to create PIL object I must have the file with image and pass the name of ...
1
vote
1answer
542 views
decoder jpeg not available: django with apache2
when I try to use a simple code
time_created = time.time()
tempPath = 'user_image/'+ str(request.user.id)+'/'+str(time_created)+'/'
print tempPath
path = ...
1
vote
3answers
2k views
Python PIL Image Module ImportError: No module named PIL, No module named Image
I've installed Python 2.7 alongside Python 2.4 as instructed here. When running a tests through Mac OSX Terminal connecting to the Server to confirm that the install is working I execute this test:
...
-1
votes
3answers
282 views
VideoCapture filename
I'm new here, this is my first post. I'm having a problem in VideoCapture: I want the names of the pictures i take change automaticaly in a "for" function and to save the pictures in a directory of my ...
0
votes
1answer
624 views
How to do image stitching using opencv (python), simplecv or pil?
How to do image stitching using opencv (python), simplecv or pil? or any other python library, i have an image which looks like this, created from 200 images, i need to stitch them in the correct ...
0
votes
2answers
850 views
how to convert raw images to png in python?
I have a folder containing over 200 raw images, i want to convert all of them to png or any other format, In C it's pretty easy but in python i don't know how it's done
I found this snippet
#import ...
0
votes
1answer
257 views
Solving picture puzzle with python
You have 2000 raw images, 52x52 pixels, RGB 24 bits, that correspond
to the pieces of a puzzle representing a 4000x1250 pixel image.
Each adjacent pair of images overlap on 1 row/column of ...
1
vote
0answers
207 views
Python PIL cuts off text on Windows 7
I wrote a script which draws a simple text and saves it using PIL.
import Image, ImageDraw, ImageFont
def get_text(text, size):
img = Image.new('RGBA', (250, 80))
font = ...
6
votes
2answers
6k views
Using python PIL to turn a RGB image into a pure black and white image
I'm using the Python Imaging Library for some very simple image manipulation, however I'm having trouble converting a greyscale image to a monochrome (black and white) image. If I save after changing ...
1
vote
2answers
596 views
Simple “blurring” of an array representing an image in python from first principles
I have an image which consists of two arbitrarily placed black 1px "blobs" on a white canvas 100px by 200px. I'm trying to "blur these blobs by turning some of the neighbouring pixels (within a radius ...
1
vote
1answer
365 views
Using python and PIL how can I grab a block of text in an image?
I have an image (*.png) which contains two blocks of text. I am trying to grab each block of text individually using the python imaging library (PIL) in python27.
I have tried to blur the image and ...
2
votes
1answer
1k views
adding a text over an image in python using imagemagik/PIL
I have a text say "I am doing great". I want to put this text over a lovely background which i have generated.
I want to put "I am doing great" over an image "image.jpg" present in the system.
The ...
2
votes
2answers
609 views
Image response in Google App Engine
I am saving a user's image as a BlobProperty by doing:
user.image = urlfetch.fetch(image_url).content
Then I'm rendering that image using a url such as:
/image/user_id
The image must be saving ...
0
votes
2answers
271 views
“IOError No such file or directory” for an image file that IS in the current directory
I'm using Python Imaging Library and Tkinter.
I am currently trying to display an image as a label, and I'm getting the above exception.
My 35 line source:
from PIL import Image, ImageTk
from ...


