Tagged Questions
2
votes
1answer
22 views
scipy.misc.imread creates an image with no size or shape
I'm trying to get scipy.misc.imread to just read in an image and tell me it size, which I've been able to do fine on other computers but it's failing for me on a new Mac:
Python 2.7.4 (default, May ...
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 ...
0
votes
0answers
34 views
Image.show() results in a black screen
Ok, so I'm trying to display a file I have in the same directory as my python script (called C.png). The first line just gives me a black bitmap image, while the second line gives me a colored image ...
0
votes
1answer
40 views
Python Image Search using JPEG and IF Statement
I'm trying to make an if statement in Python that goes like this "If image exists on my screen, do this".
For example, if I have a jpeg of a red circle saved, I want to be able to look for that red ...
0
votes
0answers
24 views
PIL returns empty boxes instead of images
I'm trying to write a program in Python 3 using PIL and am having hard time displaying image...
I am using dictionaries to temporarily store variables from config.ini
usernames={}
usericons={}
for i ...
0
votes
1answer
97 views
Add Text on Image using PIL.
I have an application that loads an Image and when the user clicks it, a text area appears for this Image (using jquery), where user can write some text on the Image. Which should be added on Image.
...
3
votes
2answers
125 views
Counting particles using image processing in python
Is there any good algorithm for detecting particles on a changing background intensity?
For example, if I have the following image:
Is there a way to count the small white particles, even with the ...
1
vote
2answers
56 views
Change saturation with PIL or Pillow?
How do I go about changing the saturation of an image using PIL or Pillow? Preferably I'd like to be able to use the solution together with the django-imagekit package. The reason I need to change the ...
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
83 views
Python, PIL; Text to Image and insertion into MS Excel
I'm using Python and PIL to create "Text to Image" figures and place these into MS Excel documents. I'm having issues with image quality -
So far I'm able to create images from given text, though ...
2
votes
1answer
151 views
Python, PIL; Text to Image and fonts
I have an issue with writing text to an image under Python and PIL -
I'm able to write text to a png file, though not bold text. Could anyone provide an example of how to achieve this?
I thought the ...
0
votes
2answers
49 views
img.save(imgstore, “GIF”) or img.save(imgstore, “JPEG”)
if request.method == 'POST':
form = DocumentForm(request.POST, request.FILES)
if form.is_valid():
u_file = request.FILES['docfile']
...
2
votes
1answer
82 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 ...
0
votes
1answer
69 views
Saving in PNG (using PIL library) after taking ImageChops.difference of two PNG files is producing transparent (or white) PNG image file
Here in this code I am taking difference of two same resolution PNG images ,then saving the difference,. Saving in JPEG works fine but in PNG, it produces a total tranparent PNG image file. look at ...
0
votes
0answers
64 views
Django cant store file
I have a issue trying to upload a image with django.
After save a model, image shows like saved, but not stored in media folder.
Here's my code:
class Post_Imagens(models.Model):
"""
Imagens ...
0
votes
1answer
54 views
Image display issue
When I load a transparent image with:
def load_image(path):
img = Image.open(path)
return ImageTk.PhotoImage(img)
class Home_Screen(threading.Thread):
def __init__(self):
...
1
vote
2answers
50 views
PIL jpeg, how to preserve the pixel color
I have some experiments with JPEG, the doc said "100 completely disables the JPEG quantization stage."
However, I still got some pixel modification during saving. Here is my code:
import Image
red = ...
1
vote
0answers
199 views
PIL ImageGrab screenshot doesn't show all visible applications
import ImageGrab
ImageGrab.grab().save("my_screenshot.jpg", "JPEG")
I have an application. This application is primarily QT which, in certain states, has embedded html elements. When this ...
1
vote
4answers
282 views
100x100 image with random pixel colour
I'm trying to make a 100x100 image with each pixel being a different random colour, like this example:
I've tried to use matplotlib but I'm not having much luck. Should I maybe be using PIL?
0
votes
1answer
71 views
Python: PIL: colors data type, need help “deciphering” its meaning
I need help to understand the PIL and colors information a little bit better.
I'm working on a Python project where I'm supposed to analyze an already existing image (.png, RGB) to extract what ...
0
votes
2answers
116 views
Saving a PIL generated PNG Image on a server with PHP
I've got a python Image object from a screen capture that I want to save on a server running PHP.
I want to do all of this without at all saving the image on the user's computer, so I want to send the ...
0
votes
1answer
149 views
Correct way to serve a dynamic image in Python/Web.Py using PIL
I need to have a Python file act as if it's an image. i.e. The path to the Python file will be used inside an tag of a web page. The Python file will dynamically create an image using PIL (no ...
1
vote
1answer
225 views
python Image PIL to binary Hex
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
import urllib.request
import io
import binascii
data = urllib.request.urlopen('http://pastebin.ca/raw/2311595').read()
r_data ...
3
votes
2answers
134 views
Using Python, is there a way to automatically detect a box of pixels in an image?
I dont currently have access to openCV on the box I am working on - which would make this a walk in the park and save me from pulling my hair - but below is an image I have that i've gotten the ...
0
votes
1answer
55 views
Making an image bigger after creating it
here is my code
import Image
import ImageDraw
img = Image.new("RGB", (400,400), "white")
draw = ImageDraw.Draw(img)
coords = [(100,70), (220, 310), (200,200)]
dotSize = 2
for (x,y) in coords:
...
1
vote
1answer
146 views
PIL mirror image coodinates
I have a image that i created using PIL
import Image
import ImageDraw
img = Image.new("RGB", (400,400), "white")
draw = ImageDraw.Draw(img)
coords = [(100,70), (220, 310), (200,200)]
dotSize = 2
...
1
vote
1answer
58 views
PIL selection of coordinates to make an image
I am wanting to create an image from a selection of coordinates i have. So I want each coordinate to be set a particular size and colour say black and 2X2, and then place it at the particular pixel it ...
1
vote
1answer
461 views
Python PIL bytes to Image
import PIL
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
import urllib.request
with urllib.request.urlopen('http://pastebin.ca/raw/2311595') as in_file:
hex_data = ...
0
votes
1answer
106 views
Python : any ideas without using PIL to draw the text on a image
i m using Python 3.3,and i have installed(just excute the downloaded file .exe,no need any setting?) aspell PIL from below link,unfortunately i import PIL are error unresolved PIL. why?
...
0
votes
0answers
191 views
Saved jpeg file from mjpeg stream not recognized by PIL in python
I am trying to snatch a valid JPEG frame from a webcam's MJPEG stream. I successfully write it to disk and I can open it in a program like Infranview, but Python and other graphic programs don't see ...
0
votes
0answers
67 views
Blending Images while maintaining opacity
I have been trying to blend together images (using PIL in python) to form one combined image. However, for both of the images to blend in properly, I've been keeping the alpha as 0.5. This leads to ...
1
vote
2answers
350 views
Trying to run simple PIL python example, can't convert jpeg to float
so I wrote a simple python script
from PIL import Image
from pylab import *
im = array(Image.open('sample.jpg'))
imshow(im)
and i get this error from IDLE
Traceback (most recent call last):
File ...
-5
votes
2answers
117 views
Pyhon image comparison regardless of size [closed]
I have two images, i want a response (true or false) to know if they are different.
The images are not of the same size.
0
votes
1answer
195 views
What is difference between PIL and ImageMagick bindings for python? [closed]
I research different ways for scale images (creating thumbnails) using python. Can anybody explain me fundamental difference in result images after ImageMagick process and after PIL process.
At first ...
6
votes
3answers
225 views
Django: How do I display a PIL Image object in a template?
Django
If a user uploads an image, and I resize it using PIL, I get a PIL Image object.
How do I display a PIL Image file in a template, before it has been saved to the database? Can it even be ...
1
vote
2answers
100 views
PIL: How to reopen an image after verifying?
I need open an image, verify the image, then reopen it (see last sentence of below quote from PIL docs)
im.verify()
Attempts to determine if the file is broken, without actually decoding
...
1
vote
2answers
290 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 ...
2
votes
1answer
124 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 ...
4
votes
2answers
168 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
314 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 ...
1
vote
1answer
239 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
124 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 ...
1
vote
3answers
852 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 ...
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 ...
0
votes
1answer
543 views
PIL image to array (numpy array to array) - Python
I have a .jpg image that i would like to convert to Python array, because i implemented treatment routines handling plain Python arrays.
It seems that PIL images support conversion to numpy array, ...
0
votes
0answers
242 views
Convert PNG to SVG in python
I wrote an app that generate barcode. For generating barcode image I use PIL. I can create image with PNG, JPEG, GIF format, but I want to create image with SVG format. It seems PIL not support SVG ...
6
votes
1answer
897 views
Can you “stream” images to ffmpeg to construct a video, instead of saving them to disk?
My work recently involves programmatically making videos. In python, the typical workflow looks something like this:
import subprocess, Image, ImageDraw
for i in range(frames_per_second * ...
0
votes
1answer
202 views
ImageOps.fit is blurring my image
I'm using ImageOps to resize and center-crop uploaded avatar images. The problem is, when I try to upload an image that is already the desired size, the uploaded image is blurred.
The relevant code:
...
1
vote
1answer
229 views
python : error while saving image from url
I need to save image from url, with Django.
So I did like the tutorial says, but I get a strange error.
page = requests.get(url)
if page.status_code != 200 or not page.content:
assert 0, 'can\'t ...
3
votes
4answers
209 views
guessing the rgb gradient from a map?
I have a map with a scale like this one: (the numbers are just an example)
which describes a single variable on a map. However, I don't have access to the original data and know pretty close to ...



