Tagged Questions
-1
votes
0answers
31 views
Cannot import PIL module
I have been trying to use PIL module in python 2.7.
When I type import Image... it works fine.
When I type im.show()
it shows:
Traceback (most recent call last):
File "<pyshell#9>", line 1, ...
2
votes
2answers
1k views
“IOError: decoder zip not available” : Ubuntu Python PIL
I am trying to get the sample heatmap.py running from:
http://jjguy.com/heatmap/
#image.py
import heatmap
import random
if __name__ == "__main__":
pts = []
for x in range(400):
...
3
votes
1answer
343 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 ...
0
votes
1answer
192 views
Line detection using PIL
Given an image consisting of black lines (a few pixels wide) on white background, what is a good way to find the coordinates along the the lines, say for every 10th pixel or so? I am considering using ...
0
votes
0answers
74 views
Using PIL to read a bayer8 formated image string under python
I have image data from an Allied Camera. It is in bayer8 format as a string, and I want to read it into an image object under PIL using the line:
im = Image.fromstring('L',(1360,1024),data)
but i ...
4
votes
1answer
193 views
Drawing multilingual text using PIL
I'm having trouble drawing multilingual text using PIL. Let's say I want to draw text - "ひらがな - Hiragana, 히라가나". But PIL's ImageDraw.text() function takes only one font at a time, so I cannot draw ...
3
votes
3answers
497 views
How to draw unicode characters on transparent image in PIL
I am trying to draw certain unicode characters on and image using python (PIL to be precise).
Using the following code I can generate the images with a white background:
('entity_code' is passed in ...
0
votes
0answers
234 views
How to include python PIL module without installation
I need to distribute some Python software which uses PIL, but to avoid installing PIL on every target machine. i have directory struct:
/myscript.py
/PIL/_imaging.so
/PIL/Image.py
/PIL/ImageFont.py
...
0
votes
1answer
247 views
DICOM to TIFF inverted LUT … Python & PIL
I am using the frombuffer command to save DICOM image data as TIFF images. But somehwere throughout this process, the image intensities are inverted (inverted LUT). Any idea on how to overcome this?
...
1
vote
1answer
318 views
PIL Draw.text and Lower Resolution
I have the following PIL code to print text in an image
import os, sys
import PIL
from PIL import ImageFont
from PIL import Image
from PIL import ImageDraw
img = Image.open("one.jpg")
draw = ...
2
votes
1answer
2k views
How to CREATE a transparent gif (or png) with PIL (python-imaging)
Trying to create a transparent gif with PIL. So far I have this:
from PIL import Image
img = Image.new('RGBA', (100, 100), (255, 0, 0, 0))
img.save("test.gif", "GIF", transparency=0)
...
1
vote
1answer
441 views
(Python) Set a specific palette in an image using PIL or PyPNG
I have a bunch of images that I am working on separately, that fit back together after being worked on. I'd like to compress them to a 8 bit image in order to save size. I'm currently doing this with ...
2
votes
2answers
69 views
Visual model of coordinated system in Python
I have some output which reads like:
(x0, y0, z0) : (x1, y1, z1)
The data represents spacial transformations. I would very much appreciate any sort of method which will visually map that data to an ...
2
votes
3answers
635 views
Using PIL to detect a scan of a blank page
So I often run huge double-sided scan jobs on an unintelligent Canon multifunction, which leaves me with a huge folder of JPEGs. Am I insane to consider using PIL to analyze a folder of images to ...
16
votes
3answers
7k views
Python Imaging Library - Text rendering
I'm trying to render some text using PIL, but the result that comes out is, frankly, crap.
For example, here's some text I wrote in Photoshop:
and what comes out of PIL:
As you can see, the ...
2
votes
2answers
430 views
How to identify non-photograph or 'uninteresting' images using Python Imaging Library (PIL)
I have thousands of images and I need to weed out the ones which are not photographs, or otherwise 'interesting'.
An 'uninteresting' image, for example, may be all one color, or mostly one color, or ...
3
votes
1answer
1k views
Python Imaging, how to quantize an image to 16bit depth?
I would like to quantize a 24bit image to 16bit color depth using Python Imaging.
PIL used to provide a method im.quantize(colors, **options) however this has been deprecated for out = ...
3
votes
3answers
5k views
PIL will not import the _imaging C module: “*** The _imaging C module is not installed”
A bit of background from the PIL setup.py build:
--------------------------------------------------------------------
PIL 1.1.7 SETUP SUMMARY
...
2
votes
2answers
723 views
What's the simplest way in Python to resize an image to a given bounded area?
I'd like to create a function, like:
def generateThumbnail(self, width, height):
"""
Generates thumbnails for an image
"""
im = Image.open(self._file)
im.thumbnail((width, ...
2
votes
4answers
2k views
image segmentation using pil/any package of python
i need to segment an image into regions .i'm using pil.i found no module to segment image in pil. I need this segmented regions as a list or dictionary.
Actually i'm trying to compare the images for ...
3
votes
1answer
267 views
Does PIL create artifacting on the bottom edge of the image when you thumbnail() then crop()? If so, what is your workaround?
When I call PIL to thumbnail() an image, and then crop(), I get artifacting on the last row of pixels -- they're either mostly black with specks of intense color, or what seems to be a not-resized ...
8
votes
3answers
4k views
How can I draw a bezier curve using Python's PIL?
I'm using Python's Imaging Library and I would like to draw some bezier curves.
I guess I could calculate pixel by pixel but I'm hoping there is something simpler.
9
votes
3answers
10k views
How do I draw text at an angle using python's PIL?
Using Python I want to be able to draw text at different angles using PIL.
For example, imagine you were drawing the number around the face of a clock. The number 3 would appear as expected whereas ...