Tagged Questions
-2
votes
3answers
80 views
Converting plain text list into array in python program [closed]
The TextFile.txt file contains:
1 one
2 two
3 three
4 four
5 five
The python program:
file = open ("x.txt", "r")
for item in file:
x = item.split ('\s')
import numpy as np
...
2
votes
1answer
64 views
Loading a blob(Google app Engine) into PIL or NumPy
I'd like to be able to load a blob(image into the Python Image Processing Library or into a numpy array for analysis(such as mean, median, standard deviation) without using the serving url.
Here is ...
1
vote
2answers
82 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
1answer
68 views
Systematically moving through every number in a numpy array
I have a 500x500 array and I am trying to write a variable called "coordinate" that will pick out each value and then apply it to a function but I keep getting the output,
AttributeError ...
1
vote
1answer
94 views
Data type error
When I run this code I get the output:
TypeError: an integer is required
I have no idea why this is happening because I set both of the data types to uint8 and uint64 respectively. Evidently I ...
0
votes
1answer
151 views
Read binary .pgm files with python and numpy
I need to read 64x64 pgm plain format image files and put the resulting values in a numpy matrix. I can do it only if I use Opencv and PIL functions to open the image, but the final numpy matrix ...
1
vote
1answer
203 views
Convert image from RGB to HSV color space
I couldn't fund such function in Scipy and Matplotlib documentation, and Google doesn't show pointers, except ActiveState recipe which demonstrates rgb2hsv function, thou not usable on Numpy array as ...
1
vote
1answer
132 views
loop binary image pixel
i have this image with two people in it. it is binary image only contains black and white pixels.
first i want to loop over all the pixels and find white pixels in the image.
than what i want to ...
3
votes
1answer
396 views
image processing using python and scipy
Hi I am trying to do image processing with python.
what i actually want to do is i have image with human and i need to indetify human faces or detect circle (basically human face).
what i have done ...
2
votes
1answer
312 views
Opencv integration with wxpython
I just wanted to integrate the opencv video stream from my web cam into a more complex gui than highgui can offer, nothing fancy just a couple of buttons and something else, however it's proven to be ...
1
vote
0answers
161 views
Detecting shape using numpy for image of people
hi i am trying to do face detection without using opencv.
I am filtering the image to find edges of the image.
I am widening the edges of the image for clear.
I want to recognise the shape in the ...
2
votes
3answers
623 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 ...
1
vote
1answer
373 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
60 views
numpy.equal with nested lists
I'll want to search a rectangle in a picture. The picture is gathered from PIL. This means I'll get a 2d-array where each item is a list with three entries for the colors.
To get where's the ...
0
votes
1answer
745 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, ...
5
votes
3answers
833 views
Convert an image RGB->Lab with python
What is the preferred way of doing the conversion using PIL/Numpy/SciPy today?
3
votes
3answers
913 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
394 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 ...
3
votes
2answers
268 views
numpy-->PIL int type issue
So I've got the x and y values of a curve that I want to plot held as float values in numpy arrays. Now, I want to round them to the nearest int, and plot them as pixel values in an empty PIL image.
...
2
votes
1answer
92 views
Python Image Shuffle Failure - where have I gone wrong?
I'm trying to scramble all the pixels in an image and my implementation of Knuths shuffle (as well as someone else's) seems to fail. Seems it is working doing each row. I cannot work out why - just ...
1
vote
1answer
240 views
Add two 3D numpy arrays with a 2D mask
I would like to add two 3D numpy arrays (RGB image arrays) with a 2D mask generated by some algorithms on a greyscale image. What is the best way to do this?
As an example of what I am trying to do:
...
1
vote
2answers
419 views
How to determine regions of pixels with a shared value using PIL
I need to divide an image to regions of pixels whose RGB value pass a certain test.
I'm OK with scanning the image and checking each pixel's value however the part of clustering them into regions and ...
2
votes
1answer
483 views
Display an numpy array with PIL
I want to display a (512, 512) numpy 2d-array of uint16 values with PIL. If I wrote a function:
def display_PIL(nparray):
image = Image.fromarray(nparray)
image.show()
I get an error ...
1
vote
3answers
505 views
Python get image matrix PIL
i am trying to get to load an image, convert it and print the matrix. I have the following code ;
im = Image.open("1.jpg")
im = im.convert("L")
print im
when i print 'im' i get this ...
2
votes
2answers
937 views
read big image file as an array in python
Does anyone know how to open a large imagery file using python?
I tried to open an imagery file (about 2 GB) through windows command prompt using ipython, but it crashes every time after I change ...
5
votes
1answer
929 views
How to convert Numpy array to PIL image applying matplotlib colormap
I have a simple problem but cannot find a good solution to it.
I want to take a numpy 2D array which represents a grayscale image, and convert it to an RGB PIL image while applying some of the ...
1
vote
2answers
424 views
What is causing dimension-dependent AttributeError in PIL fromarray function?
I'm getting an error from the following Python3 code, in the indicated lines.
x, y, and z are all plain 2D numpy arrays identical but for size, and ought to work the same. Yet they act differently, ...
1
vote
0answers
267 views
Tkinter 16-bit raw (monochrome) image display w/ scaling?
I have a 16-bit image (but only 10-bits effective) in the form of a numpy array. My current code that is used to display the image is:
from Tkinter import *
import Image, ImageTk
from functools ...
4
votes
4answers
279 views
Finding a specific index in a binary image in linear time?
I've got a 640x480 binary image (0s and 255s). There is a single white blob in the image (nearly circular) and I want to find the centroid of the blob (it's always convex). Essentially, what we're ...
2
votes
2answers
169 views
Image Detection and Verification of State Based on Area
I am currently working on a project where I must differentiate a normal cell from a diseased cell. The specific abnormality I am looking at states that the cell nucleus should have a certain area and ...
1
vote
2answers
587 views
Efficiently Reshaping/Reordering Numpy Array to Properly Ordered Tiles (Image)
I would like to be able to somehow reorder a numpy array for efficient processing of tiles.
what I got:
>>> A = np.array([[1,2],[3,4]]).repeat(2,0).repeat(2,1)
>>> A # image like ...
5
votes
1answer
769 views
Rectangular bounding box around blobs in a monochrome image using python
I have a few monochrome images (black and white not greyscale) with a few weirdly shaped objects. I'm trying to extract each object using python27, PIL, scipy & numpy and the following method:
...
1
vote
2answers
615 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 ...
0
votes
1answer
720 views
how to put data into an image from sequence
How to put sequence (raw) data of one image into another which has different size?
Visual effect expected to be as one of crop method but data should come as raw data
...
sequence = image1.getdata()
...
0
votes
1answer
354 views
pil image to numpy array conversion stops my script
I'm getting an odd problem. The following code will end my script prematurely. No exceptions thrown, just quietly resets the shell.
img = Image.open(file_name)
crop_box = (4, 18, 630, 464)
img = ...
2
votes
2answers
279 views
What's the most efficient way to compute the mode in a sliding window over a 2D array in Python?
I have an RGBA image that I need to upscale while keeping it smooth.
The catch is that I need to keep the colors exactly the way they are (background: I'm resizing a map where provinces are ...
3
votes
2answers
880 views
Slow python image processing with PIL and numpy
I'm trying to implement some image processing (finding regions of similar colour) in Python with PIL and Numpy. Can't figure out how to speed up this code. Could you help?
def findRegions(self, ...
4
votes
1answer
1k views
Image to numpy-array: JPG vs. PNG
My system: Mac OS X 10.7
Python 2.7.1
NumPy version 1.5.1
My code:
image = openImage(fileDir)
print image
image = np.asarray(image)
print image
If I run this:
python main.py 1010.png
the ...
2
votes
3answers
413 views
Using multi-threading to process an image faster on python?
On a Python + Python Image Library script, there's a function called processPixel(image,pos) that calculates a mathematical index in function of an image and a position on it. This index is computed ...
1
vote
1answer
348 views
What does “None” mode mean in Image.fromarray?
I am converting from a numpy array to an image using the
Image.fromarray()
The docstring shows that the default mode is "None". What does that mean? Is it one of the modes such as "L", or is it ...
2
votes
1answer
372 views
Normalize numpy arrays from various “image” objects
please consider this reproducible example:
from PIL import Image
import numpy as np
import scipy.misc as sm
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import matplotlib.cbook as ...
2
votes
2answers
197 views
How to apply a function to each 3rd axis element in a numpy array?
If I have a numpy array like so:
[[[137 153 135]
[138 154 136]
[138 153 138]
...,
[134 159 153]
[136 159 153]
[135 158 152]]
...,
[ 57 44 34]
[ 55 47 37]
[ 55 47 37]]]
...
0
votes
1answer
610 views
PIL Cannot Handle This Data Type
I'm attempting to use the fft module in numpy:
import Image, numpy
i = Image.open('img.png')
a = numpy.asarray(i, numpy.uint8)
b = abs(numpy.fft.rfft2(a))
b = numpy.uint8(b)
j = Image.fromarray(b)
...
3
votes
2answers
1k views
numpy.array of an “I;16” Image file
I want to use TIFF images to effectively save large arrays of measurement data. With setting them to mode="I;16" (corresponding to my 16 bit data range), they yield 2MB files (~1000x1000 "pixel"). ...
5
votes
3answers
3k views
Finding a subimage inside a Numpy image
I have two Numpy arrays (3-dimensional uint8) converted from PIL images.
I want to find if the first image contains the second image, and if so, find out the coordinates of the top-left pixel inside ...
2
votes
1answer
238 views
How to improve efficiency in this numpy iterating?
I'm working on an assignment about converting a grayscale image to 1-bit binary image by dithering. I'm trying a simple 4x4 matrix that will make the image 16 times larger than original.
...
3
votes
1answer
603 views
How to convert image which mode is “1” between PIL and numpy?
I'm new to image processing with Python and met a strange problem.
For example I have a 2*2 black-white bitmap image which pixels are following:
black white
white black
Use PIL and convert ...
6
votes
2answers
803 views
Using PIL to fill empty image space with nearby colors (aka inpainting)
I create an image with PIL:
I need to fill in the empty space (depicted as black). I could easily fill it with a static color, but what I'd like to do is fill the pixels in with nearby colors. For ...
4
votes
2answers
747 views
Dividing binary image into 'blocks' of pixel data
I am using Python and PIL as part of my work on embedding data in binary images and need to analyse groups of pixels to determine appropriate pixels to manipulate in order to embed data. The image ...
12
votes
3answers
4k views
Fastest 2D convolution or image filter in Python
Several users have asked about the speed or memory consumption of image convolutions in numpy or scipy [1, 2, 3, 4]. From the responses and my experience using Numpy, I believe this may be a major ...