Tagged Questions
0
votes
0answers
24 views
Chromatic aberration in C#/Python
I recently stumbled across the chromatic aberration effect. I really like this effect, but I didn't find any ways to produce it without OpenGL (I just found some rough explanations of how to do it in ...
2
votes
1answer
23 views
Equivalent to matlab's imagesc in matplotlib?
I am coming to Python and numpy and matplotlib from a Matlab background. One function in matlab that I use all the time is imagesc. Is there an exact equivalent to this somewhere in matplotlib? I ...
2
votes
3answers
63 views
Copying files with python
I'm relatively new to python, and am part of the way through "Learning python the Hard Way," but have a question.
So, from what I've read, if you want to make a copy of a text file, you can just open ...
2
votes
1answer
21 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 ...
1
vote
0answers
51 views
centring an image ontop of another one in python(PIL), then hiding one inside the other
The task is to make two functions one that embeds a grayscale image inside a RGB one. The second then shows the hidden "watermark". I've completed the task( there is 15 tests the code must pass I ...
0
votes
0answers
24 views
How to define area of interest around words in a text converted to image
I need to convert notes from text to bmp image for an eye tracking study (preferably with python)
I would like to define frames of area of interest around words automatically.
I would like to ...
0
votes
1answer
21 views
Image getting corrupted while downloading via wget. Where am I going wrong?
This image gets corrupted when I'm trying to download using wget. I'm completely not sure where I'm going wrong. This is my code:
command = 'wget ' + '-U "Mozilla/5.0 (X11; U; Linux i686; en-US) ...
1
vote
4answers
47 views
How to find out if an image is loaded?
I have a django project which is running (for example) on localhost:8000.
I have an image in this address localhost:8000/static/test.jpg . A user may open just this image by going to it's url and not ...
0
votes
1answer
24 views
Non-flicker interactive Image sequence display with wxpython
I've created an interactive image sequence viewer. The viewer would work almost perfectly only if there is no flickering. I read a bit about double buffering and find it a bit confusing. I need ...
0
votes
0answers
31 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 ...
1
vote
1answer
42 views
How to check {{message}} == “sometext” to display certain image
I have been looking into how to implement django to code to check {{message}} == "sometext" for my code. Currently there is an input to type in text on one page which display one another but I am ...
0
votes
1answer
40 views
Resize Image before Upload to Google App engine
I would like to be able resize an image blob before I save it to a database with google app engine
from google.appengine.api import images
from google.appengine.ext import blobstore
from ...
0
votes
0answers
20 views
Use of pyqt imageformats when running visual studio 2010
Not able to get targa images to render when running python application in debug from Visual Studio 2010.
I've seen posts talking about adding "[app dir]/imageformats/qtga4.dll" but it's not working.
...
-1
votes
0answers
31 views
python program to detect the shape of an object and its RGB fraction in an image? [closed]
I am seeking an handy python program to detect the shape of an object and the fraction of RGB inside the object on a RAW image file.
Please if you see any similar programs source code I can play ...
0
votes
2answers
49 views
how can you display an image on a gui using tk in python2.7
i need away to be able to show an image when i run the python code in its gui form if possible. Also do i have to type in the folder name and file name in the code if you know the answer i tried pil ...
0
votes
1answer
28 views
How to fit an Image inside a GtkScrolledWindow? (pygtk)
My program is supposed to display images and fit the size of the window to the image being displayed. However, if the image is larger than the screen, the window shouldn't grow larger than the screen, ...
0
votes
1answer
39 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 ...
2
votes
2answers
37 views
twisted image transfer from client to server gives bad format error
I was trying to send an image file using tcp from server to client. I tried opening the file, reading it and then transporting it using self.transport.write. On the client side, when I receive data, I ...
0
votes
0answers
28 views
displaying image with imshow in python
I construct an the image as follows
import numpy
im = numpy.zeros((100,100,3))
im[:,:,0] = rdata
im[:,:,1] = gdata
im[:,:,2] = bdata
when I show this data using imshow as follows
...
0
votes
1answer
25 views
What does this pyglet error mean?
I'm trying to blit some simple images, and learn to use ImageGrid and other functions, but this same error keeps popping up:
File "C:\Python27\lib\site-packages\pyglet\gl\lib.py", line 105, in ...
0
votes
1answer
49 views
How can I tell the difference between a .gif and a .jpg file using MATLAB or python without having the extension explicitly?
I have a database of files "1", "2", "3", etc[...]. They should have been downloaded with "1.jpg", "2.gif", "3.png", but this information wasn't available. My question is how can I get information by ...
1
vote
1answer
40 views
Python Tkinter : gif image in a canvas
This code works :
import tkinter
root = tkinter.Tk()
canvas = tkinter.Canvas(root)
canvas.grid(row = 0, column = 0)
photo = tkinter.PhotoImage(file = './test.gif')
...
0
votes
3answers
131 views
Google AppEngine images API suddenly corrupting images
We have been using AppEngine's images API with no problem for the past year. Suddenly in the last week or so the images API seems to be corrupting the image. We use the images API to do a few ...
0
votes
1answer
45 views
how to load a large RGB image in python?
I am a beginner in Python. I would to load some tif images in Python and then do some image processing over them. At the starting point, I faced a problem of loading. the images have the size of ...
0
votes
0answers
21 views
get image from image.files with objectid
I have a problem with mongoengine. I get an objectid of an image in image.files collection. How could I get the image in django, just like image.files.objects(pk=objectid).first()?
Is there any apis ...
-1
votes
0answers
32 views
Send image files from server to client twisted [closed]
Is there a way I can send an image from a TCP server to clients using Twisted ? I tired going into the documentation, but it's a bit complex for me.
Thanks
0
votes
2answers
58 views
Open images? Python
Im creating a text based labryinth game, but I figured it needed some pictures to illustrate whats going on. For some reason it just dies when I try to go to a2(Where the picture should pop up). I am ...
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
91 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.
...
1
vote
1answer
65 views
Scrapy - How to store the local path of a downloaded image?
My scraper is working well, it downloads images and registers items in database, but I also want their local paths to be saved into my MySQL database and I don't know how to proceed.
I've read this ...
0
votes
0answers
94 views
Sending an image through a socket from python to android
I currently have a python socket server that captures from a webcam using opencv. I have converted the captured image using image.tostring();
I am trying to send this image to an android application ...
3
votes
1answer
52 views
matplotlib + python: figure size for fig.figimage and fig.savefig
I'm trying to add a png image to a plot created with matplotlib in python.
Here is my plot code
import matplotlib as mpl
mpl.use('Agg')
import matplotlib.pyplot as plt
fig = ...
0
votes
1answer
57 views
Python convert picture to b/w with specific rules
I am trying to analyze a picture. I am basically doing that in 2 steps:
converting it into a greyscale picture
taking areas in the picture and look if they are more likely white or black
My ...
-2
votes
0answers
30 views
Python how to generate random mists etc on an image?
I'm thinking of using the PIL library for a small image manipulation program that I will be making. I want ot to have the functionality of generating special effects such as mist on the image... how ...
8
votes
2answers
158 views
Classifiying a set of Images into Classes
I have the problem that I get a set of pictures and need to classify those.
The thing is, i do not really have any knowledge of these images. So i plan on using as many descriptors as I can find and ...
0
votes
3answers
73 views
Converting BLOB, stored on a database, to an image on an HTML website
This is my first question.
I am having users upload their own image to a database.
That image is stored as a BLOB.
I was able to do this successfully.
I am using MySQL for the database.
The part I ...
3
votes
1answer
56 views
Resizing an image in python
I have an image of size (288, 352). I want to resize it to (160, 240).
I tried the following code:
im = imread('abc.png')
img = im.resize((160, 240), Image.ANTIALIAS)
But it gives an error ...
1
vote
1answer
39 views
Displaying an image with the Tkinter library — “too early to create image”
Here is my code to display an image from a URL:
def display_image(image_url):
# create image
image = Image.open(StringIO(urllib2.urlopen(image_url).read()))
image = ...
0
votes
1answer
42 views
Django content type of an image file
I want to check a file type before uploading it by:
content = self.cleaned_data['picture']
content_type = content.content_type.split('/')[0]
When I upload the picture I get an error:
'NoneType' ...
0
votes
1answer
44 views
Python Tkinter message box add custom image
Is there any way to add a custom image to the tkinter built in tkMessageBox?
0
votes
1answer
25 views
Error importing mahotas in python (missing dll file)
I installed the mahotas library as the site says to but i keep getting the same error when i try to import the module:
Could not import submodules (exact error was: DLL load failed: The specified ...
0
votes
0answers
26 views
Encode processed image to BASE64 in python for use in json [duplicate]
Im new to stackoverflow and this will be my first quastion. I will try to explain my problem as good as I can.
Im doing python code for a server. Where I load an image and do a lot of image ...
1
vote
3answers
60 views
Python-Tkinter, for-loop to create pictured button
I'm still quiet new to programming, so maybe my question in pretty easy or even stupid. As said in the title I'm trying to programm a for loop, which creates a pictured button widget for each picuture ...
1
vote
1answer
39 views
Object extraction from Images with python
I want to object extraction from Images. for example i want to count of human in a picture or find similar picture in great data base(like google example) or finding field of picture (Nature of Office ...
3
votes
3answers
143 views
2D Convolution in Python similar to Matlab's conv2
I have been trying to do Convolution of a 2D Matrix using SciPy, and Numpy but have failed. For SciPy I tried, sepfir2d and scipy.signal.convolve and Convolve2D for Numpy. Is there a simple function ...
1
vote
1answer
84 views
Pillow 2.0.0 tutorial
I'm trying to learn pillow 2.0.0 for python, but honestly I have no idea where to start, since I can't find any tutorials or docs, and the one here is badly structured, it only describes the modules ...
3
votes
2answers
114 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 ...
-1
votes
2answers
47 views
How to efficiently pass images from C process to Python process?
Goal
Pass images from a C process to a Python process quickly.
Details
The C process is a command line tool which produces raster images. The Python process is a GUI application which asks to C ...
0
votes
0answers
70 views
Transforming an uploaded image into string in python
So I am using Google App Engine for an app, and i need to pass a picture from GAE to an android client. In order to do this, i though of transforming the picture in a strig and send it as a json...(i ...


