3
votes
2answers
135 views

Image erosion and dilation with Scipy

I am trying to use scipy to do erosion and dilation of an image. It seems pretty straightforward using scipy -> binary_erosion / dialation. However, the output is not at all what is expected. Here is ...
1
vote
2answers
85 views

What's the meaning of numbers in numpy arrays?

In numpy, The array method could convert a image to a big array, the question is , whats' the meaning of the numbers in this array?(RGB value? gray-scale value? ) What's more, when I convert a image ...
1
vote
2answers
110 views

Remove points which contains pixels fewer than (N)

I tried almost all filters in PIL, but failed. Is there any function in numpy of scipy to remove the noise? Like Bwareaopen() in Matlab()? e.g: PS: If there is a way to fill the letters into ...
0
votes
1answer
69 views

image feature detection with large structuring element

I am trying to extract some features from an image but each of the extracted features are really small. The easiest way to extract larger features seems to be to use a larger structuring element but ...
4
votes
2answers
147 views

Scipy Binary Closing - Edge Pixels lose value

I am attempting to fill holes in a binary image. The image is rather large so I have broken it into chunks for processing. When I use the scipy.ndimage.morphology.binary_fill_holes functions, it ...
0
votes
1answer
265 views

Image Remap without cropping

This is a continuation of this question : Finding Squares in Image I followed the steps in my answer there : http://dsp.stackexchange.com/a/7526/818, And I got the answer as given below : But at ...
0
votes
1answer
99 views

target detection using python, scipy

I have created a program that displays 96x512 numpy arrays as images. Within these images, there are targets (the data is an image of a sphere in a pool... this will eventually be used for fish ...
1
vote
2answers
161 views

Python- Trying to find image with largest green circle

I have been given a file with hundreds of images. Each image contains a single green circle on a white background. I need to determine which image contains the circle with the largest diameter with a ...
1
vote
1answer
432 views

How to perform image cross-correlation with subpixel acuracy with scipy

The image below shows two circles of same radius, rendered with antialiasing, only that the left circle is shifted half pixel horizontally (notice that the circle horizontal center is at the middle of ...
2
votes
1answer
218 views

How can I get a full medial-axis line with its perpendicular lines crossing it?

I have an image and I want to get the pixels that cross through its medial axis. I tried to use skeletonize and medial axis methods in order to get them but both methods return one dimensional line ...
2
votes
3answers
753 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
385 views

how to apply a deconvolution method on an image?

This is an extended question of this ques .Thanks to Kindall and Stephan Van der Wallt ,it turns out in order to solve the previous problem, I need to understand how to apply deconvolution process on ...
1
vote
2answers
427 views

How can I get the “smart sharpen” effect on my images with python?

I am wondering how to smart sharpen an image using python or any related image library like ndimage ,skimage or even PIL.I could find methods that actually sharpen my image but with a lot of noise ...
4
votes
2answers
150 views

Optimizing implementation of a rotating mask in numpy/scipy

This is my first attempt at using strides in numpy and it did improve speed compared to simple iteration over the different filters, yet it still is quite slow (and it feels like there are at least ...
1
vote
1answer
199 views

Finding the vertical and the horizontal gradients of a image using python

I'm just starting off on Image processing in python using Scipy, Numpy, Image libraries. I need to find the gradient field of the image in order to divide the pixels into bins. For that, I calculated ...
0
votes
2answers
86 views

How to label different objects in a non solid black background?

I know that scipy.ndimage.label can't label if the background color is not a solid black. So I have an image with black background and it's not a solid black so we can't assume that all the RGB values ...
0
votes
2answers
109 views

Python - Iter through identified component features

I am standing in front of a huge problem. Using the python libraries NumPy and SciPy, I identified several features in large array. For this purpose, I created a 3x3 neighbor structure and used it for ...
0
votes
1answer
86 views

Radial sampling with SciPy

I'm doing image processing with scipy.ndimage. Given a ring-shaped object, I'd like to generate a "profile" around its circumference. The profile could be something like thickness measurements at ...
7
votes
2answers
189 views

Asynchronously read and process an image in python

Context I often found myself in the following situation: I have a list of image filenames I need to process I read each image sequentially using for instance scipy.misc.imread Then I do some kind ...
4
votes
2answers
852 views

Fast 2D rigid body transformations in numpy/scipy

I want to apply rigid body transformations to a large set of 2D image matrices. Ideally, I'd like to be able to just supply an affine transformation matrix specifying both the translation and ...
1
vote
1answer
152 views

how after ndimage.find_object … color features?

I have a large image which after labeling has about 500 features. I know how to get them in the slices using find_object but I want to color them so I can see the result. Any quick suggestion for ...
1
vote
1answer
116 views

Difference between output and return value in scipy ndimage filters

I'm beginning a computer vision project and I need to compute the horizontal and vertical Sobel's derivatives. I'm using Python together with Numpy and Scipy, specifically the ndimage.filters module. ...
2
votes
2answers
158 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 ...
2
votes
3answers
396 views

Scientific image display python

Is there a full feature image display lib for python? With the ability to identify pixel values, plot profiles, adjust brightness/contrast etc - something like ImageJ PIL, matplotlib, scipy-skimage ...
2
votes
1answer
171 views

how can I find and delete overlapped slices of an image from a list?

I have divided an image into objects (slices) using the method kindly contributed by unutbu and Joe Kington at this question: Rectangular bounding box around blobs in a monochrome image using python ...
5
votes
1answer
738 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: ...
7
votes
1answer
384 views

Speeding up linear interpolation of many pixel locations in NumPy

I've tried to replicate the main bottleneck in one of my programs. I want to get the linearly (or rather bilinearly) interpolated values of several non-integer pixel values simultaneously. It is not ...
0
votes
2answers
169 views

How to use numpy to compare several arrays and identify the one with minimal differences?

I do have a set of arrays (20x40) with values between 0 and 255 (grayscale images). I need to compare a given array with a set of 10 others that are used as reference and choose the one that is ...
1
vote
1answer
135 views

TypeError in scipy.signal.sepfir2d

I'm attempting to calculate the derivatives of optical flow (as referenced in my previous SO question) and am running into a TypeError when performing the calculation. I first read the video in using ...
2
votes
1answer
573 views

Inverse Filter of spatially convolved versus frequency convolved image

My image processing class has been assigned a project on image restoration. I'm currently working on the Inverse Filter. image -> degrade -> inverse filter -> restore image. I'm using a simple 5x5 ...
1
vote
1answer
1k views

Sliding window using as_strided function in numpy?

As I get to implement a sliding window using python to detect objects in still images, I get to know the nice function: numpy.lib.stride_tricks.as_strided So I tried to achieve a general rule to ...
5
votes
2answers
2k views

Efficient 2D edge detection in Python

I know that this problem has been solved before, but I've been great difficulty finding any literature describing the algorithms used to process this sort of data. I'm essentially doing some edge ...
6
votes
1answer
501 views

NumPy/SciPy: Move mask over Image and check for equality

I am trying to do image processing using NumPy and scipy. I have a template image corresponding to a background, and I want to find out all the places where it occurs in the input image and set the ...
6
votes
3answers
5k views

High Pass Filter for image processing in python by using scipy/numpy

I am currently studying image processing. In Scipy, I know there is one median filter in Scipy.signal. Can anyone tell me if there is one filter similar to high pass filter? Thank you
3
votes
2answers
930 views

How to reduce an image size in image processing (scipy/numpy/python)

Hello I have an image ( 1024 x 1024) and I used "fromfile" command in numpy to put every pixel of that image into a matrix. How can I reduce the size of the image ( ex. to 512 x 512) by modify that ...
3
votes
1answer
601 views

Can anyone please explain how this python code works line by line?

I am working in image processing right now in python using numpy and scipy all the time. I have one piece of code that can enlarge an image, but not sure how this works. So please some expert in ...
11
votes
4answers
2k views

Cell segmentation and fluorescence counting in Python

How can I segment cells from an image taken on a microscope, along the lines of what was done here in Matlab? http://blogs.mathworks.com/steve/2006/06/02/cell-segmentation/ Also, if I take multiple ...
4
votes
3answers
652 views

Matlab / Octave bwdist() in Python or C

Does anyone know of a Python replacement for Matlab / Octave bwdist() function? This function returns Euclidian distance of each cell to the closest non-zero cell for a given matrix. I saw an Octave C ...
7
votes
3answers
2k views

How can I efficiently process a numpy array in blocks similar to Matlab's blkproc function

I'm looking for a good approach for efficiently dividing an image into small regions, processing each region separately, and then re-assembling the results from each process into a single processed ...
6
votes
1answer
1k views

image information along a polar coordinate system

I have a set of png images that I would like to process with Python and associated tools. Each image represents a physical object with known dimensions. In each image there is a specific feature of ...
2
votes
5answers
4k views

Sum of Square Differences (SSD) in numpy/scipy

I'm trying to use Python and Numpy/Scipy to implement an image processing algorithm. The profiler tells me a lot of time is being spent in the following function (called often), which tells me the sum ...
5
votes
4answers
1k views

“painting” one array onto another using python / numpy

I'm writing a library to process gaze tracking in Python, and I'm rather new to the whole numpy / scipy world. Essentially, I'm looking to take an array of (x,y) values in time and "paint" some shape ...