Tagged Questions
-2
votes
1answer
27 views
How to make a script for automatically separating a handwritten note into two parts (divided by a colored line) [closed]
I'd like to scan a white size a4/a5 handwritten note with black handwriting that is separated into two parts with a straight colored line made with some marker pen. Using the picture file I get I then ...
1
vote
2answers
34 views
Adding a transparent circle to an image on python with PIL
I have a python program that craetes a png file with a circle on it. Now I want this circle to be semi transparent, given an alpha value.
Here is what I do:
img_map = Image.new(some arguments here)
...
0
votes
1answer
52 views
Python performance, or bad usage of PIL?
I am implementing basic global thresholding with Python. A part of the algorithm involves grouping pixels into two containers according to their intensities;
group_1 = []
group_2 = []
for intensity ...
2
votes
2answers
95 views
Detecting a Specific Watermark in a Photo with Python (without SciPy)
I have a large number of images (hundreds of thousands) and, for each one, I need to say whether or not it has a watermark in the top right corner. The watermark is always the same and is in the same ...
0
votes
2answers
76 views
Convert image color space to RGB in Python
I'm working on the image processing script(Python with PIL library) and i need to convert color space of any image to RGB. I've tried this trick, but it works only with png images in RGBa color space:
...
0
votes
2answers
77 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 ...
0
votes
1answer
87 views
How to make texts in images sharper using PIL?
I was working with PIL, OpenCV and OCR readers to read texts from Images. The biggest problem I faced is when it comes to Image processing to make texts sharp enough for easier/accurate extraction by ...
5
votes
1answer
411 views
Besides standard/progressive, the 3rd kind of JPEG compression: load by channel?
this question might be an "Open Question" and many of you might be eager to close it, but please don't. Let me explain.
As we all know, JPEG has two kinds of compression (at least in Photoshop save ...
0
votes
0answers
43 views
Detect and download only product images with Scrapy
I'm loving Python, but am rather new to image processing.
What would be a suitable library to detect a product image (those with predominantly white background / white in each corner pixel) and where ...
1
vote
2answers
46 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 = ...
3
votes
1answer
89 views
Recommendations for backend image processing in Python
On my site I'm using simple text overlay. Inputs come from textboxes and then javascript makes an AJAX call with the inputs that are then processed in the backend by PIL (Python Imaging Library).
...
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, ...
3
votes
2answers
287 views
Removing background noisy lines from Captcha Image using PYTHON PIL
I have a processed captcha image(Enlarged) look like :
As you can see, the font-size of the "TEXT" is bit larger than the width of the Noisy Lines.
So I need an algorithm or code to remove the noisy ...
-1
votes
1answer
161 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 - ...
0
votes
1answer
71 views
Crop an image in Python: Image.crop() vs. Image.transform()?
I want to crop an image by selecting a subregion of it to turn into a new image file.
Based on what I see in the PIL docs, I am trying to decide between 2 approaches.
For both approaches:
# ...
2
votes
3answers
521 views
Grayscale image to NumPy array for Fourier transform
Currently I'm using PIL and NumPy. I have a colored png image and I want to:
Read it in in grayscale
Convert to NumPy array
Perform a FFT on array
Display the image
This is what I'm trying (in ...
3
votes
2answers
134 views
Loss of data when extracting frames from GIF to PNG?
When I try to use fraxel's answer on
http://stackoverflow.com/questions/10269099/pil-convert-gif-frames-to-jpg
on the image ...
1
vote
2answers
332 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
115 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.
1
vote
1answer
149 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 ...
2
votes
2answers
411 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
vote
2answers
276 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
97 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 ...
2
votes
1answer
326 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 ...
0
votes
1answer
96 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 ...
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
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 ...
1
vote
3answers
802 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
354 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
42 views
Use str to set attribute for module in python
I'm trying to learn python (using python3.2), and right now I'm creating a program designed to scale images:
from PIL import Image
def newSizeChoice():
scale = input('Please enter the scale to ...
1
vote
2answers
174 views
How can i iterate over image pixels in a faster manner in python?
I want to modify a grayscale image in a manner so that I can change the pixel values to black for the top half of the image. I can certainly do this by iterating over in the usual manner like this:
...
1
vote
1answer
259 views
Python Image Matching. Find mxm image from nxn image
So my problem is a relatively simple one, but still quite hard for a Python rookie like me.
So I essentially have a number of shapes in an input image like a bunch of small triangles in a square or ...
2
votes
3answers
720 views
Resampling a numpy array representing an image
I am looking for how to resample a numpy array representing image data at a new size, preferably having a choice of the interpolation method (nearest, bilinear, etc.). I know there is
...
0
votes
1answer
347 views
Template Matching (Image Search) function in Python Imaging Library
I had a problem where I need to search for a pattern (present as a numpy ndarray) within another image (also present as a numpy ndarray) and compute a template match (minimum difference position in ...
2
votes
1answer
80 views
PIL - Identifying an object with a virtual box
I have an image (sorry cannot link it for copyright purposes) that has a character outlined in a black line. The black line that outlines the character is the darkest thing on the picture (planned on ...
3
votes
1answer
224 views
RGB Values issue using PIL in python 3 issues
I am using the PIL Library in Python 3 to modify .gif files and in most of the cases so far the end result has looked how it is supposed to, but when checking some rgb values I noticed that I am only ...
5
votes
1answer
446 views
Auto-cropping images with PIL
I have folder full of images with each image containing at least 4 smaller images. I would to know how I can cut the smaller images out using Python PIL so that they will all exist as independent ...
0
votes
2answers
101 views
Automatically rearranging the rows of an image
Could someone tell me what the terminology is for automatically rearranging the rows of an image like this:
To make it look like this:
If possible does anyone have any examples of how this ...
3
votes
1answer
579 views
Out of range error or wrong returned values when accessing 2d pixel values in OpenCV using Get2D
This is a simple program that uses OpenCV (in Python) to import an image, convert it to grayscale and display it in a window. Then, when the user clicks a position in the window, a flood-fill is ...
1
vote
1answer
446 views
Image conversion in PIL, pgm file error
When trying to do the following in the PIL python library:
Image.open('Apple.gif').save('Apple.pgm')
the code fails with:
Traceback (most recent call last):
File ...
0
votes
2answers
960 views
Python Image Library convert from Jpeg to PDF
I'm attempting to convert a Jpeg file with, 200 dpi, to a PDF file, however, when I save the file as a PDF I think it's changing the dpi to 72, and thus making the image larger. I had a similar ...
3
votes
1answer
224 views
Python Image Library Image Resolution when Resizing
I am trying to shrink some jpeg images from 24X36 inches to 11X16.5 inches using the python image library. Since PIL deals in pixels this should mean scaling from 7200X 4800 pixels to 3300 X2200 ...
1
vote
2answers
314 views
PIL histogram throws buffer overflow. How can I circumvent this?
I would like to generate a histogram from a 16 bit greyscale image with Python. When I run the following code, I get a buffer overflow.
#!/usr/bin/python
from PIL import Image
import numpy as np
i ...
6
votes
1answer
203 views
Changing the color of an image based on RGB value
Situation:
You have an image with 1 main color and you need to convert it to another based on a given rgb value.
Problem:
There are a number of different, but similar shades of that color that ...
1
vote
1answer
93 views
ImageOps.unsharp_mask not working on PIL
I writing a Python app where I need to do some image tasks.
I'm trying PIL and it's ImageOps module. But it looks that the unsharp_mask method is not working properly. It should return another image, ...
3
votes
2answers
1k views
Removing the background noise of a captcha image by replicating the chopping filter of TesserCap
I have a captcha image that looks like this:
Using a utility called TesserCap from McAfee, I could apply a "chopping" filter to the image. (Before running it, I made sure there were only two colors ...
3
votes
1answer
339 views
convert image to value matrix
I have an image which is like a chess board with 4 colors (Black, white, Red, Blue). I have to convert this image to a matrix of numbers: 1 for white, 2 for black, 3 for red so on.
For example the ...
1
vote
1answer
287 views
Python PIL convert JPG from AdobeRGB to sRGB
How can I detect if the JPG is AdobeRGB and if it is convert it in python to sRGB JPG.
If that is possible in PIL, that would be great. Thank you.
2
votes
2answers
963 views
manipulate raw binary image data with python
I have an raw binary image stored as a .bin file and it has some important data on it. The problem is that the color information is slightly off so I need to alter it a little bit. Is there any way ...
1
vote
1answer
473 views
can the python PIL deal with raw image data?
I have an raw image file that is .bin and is composed of 16 bits unsigned intergers. Can the python imaging library take this type of file and process it? My code is not running properly and giving ...

