1
vote
1answer
32 views

Comparing two images pixel-wise with PIL (Python Imaging Library)

I need a function which compares two PIL images of the same size. Let's call them A and B. The result is supposed to be a new image of the same size. If a pixels is the same in both A and B it's ...
2
votes
1answer
55 views

Comparing computer vision libraries in python [closed]

I want to decide about a Python computer vision library. I had used OpenCV in C++, and like it very much. However this time I need to develop my algorithm in Python. My short list has three libraries: ...
0
votes
1answer
22 views

downsampling images as a function in Python

I am trying to resample some tiff files from 2000*2000 to 500*500. I have created a function and I tried for one file and it worked nicely. Now I want to apply it for all the available file I have. I ...
0
votes
0answers
26 views

How can i use scikit image's skeletonization together with mahotas?

I have binary skeletonized images and i use python library mahotas for extracting end-points and branched points. I do not like mahotas thin function (there are too many little branches) and so i ...
1
vote
1answer
36 views

Get Laplacian pyramid using opencv

I'm trying to get a layer of the Laplacian pyramid using the opencv functions: pyrUp and pyrDown. In the documentation and in more detail in this book, I found that the i-th Laplacian layer should be ...
0
votes
0answers
32 views

Chromatic aberration in C#/Python [closed]

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
2answers
36 views

Faster way to analyze each sub-window in an image?

I'm trying to calculate the entropy feature of sub-windows in an image. Here is the code I wrote: def genHist(img): hist = np.histogram(img, np.arange(0, 256), normed=True) return hist[0] ...
0
votes
1answer
27 views

Using set of images as an input

I am trying to take a set of tagged images as input and remove noisy tags from each image. I have written a python code which takes a text file as input, each line of which corresponds to tags of an ...
4
votes
2answers
65 views

Robust detection of grid pattern in an image

I have written a program in Python which automatically reads score sheets like this one At the moment I am using the following basic strategy: Deskew the image using ImageMagick Read into Python ...
2
votes
0answers
48 views

How to add two videos at a particular point [closed]

I have 8 web-cams and I record a lengthy tank with water for ripples. As each webcam can only record a certain portion of the tank, I want to club all the videos of 8 web-cams to give me a perfect ...
0
votes
0answers
38 views

How to output the numbers in array from Fourier transform to a one single line in Excel file using Python

I want to output the numeric result from image processing to the .xls file in one line exactly in cells horizontally, does anybody can advice what Python module to use and what code to add, please? ...
-2
votes
1answer
31 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
99 views

How can i delete largest contour in a skeleton image in python?

I would like to delete the circumference (the outermost perimeter of a sign) of this wheel skeleton sign except what's inside. I think about a function findcontours() and delete the largest contour ...
2
votes
3answers
111 views

How can I calculate the area of an object by using its contour (chain code)?

Say I have a rotated squared object with chain code [1, 1, 1, 1, 3, 3, 3, 3, 5, 5, 5, 5, 7, 7, 7] using 8-connectedness. How can I derive its area, as in number of pixels? EDIT: I derived the chain ...
1
vote
1answer
101 views

Face Recognition - How to return the correct image?

I am trying to make hand gesture recognition (similar to face recognition) using Principal Component Analysis(PCA) in python. I have a Test image and I want to get its nearest match from a set of ...
0
votes
0answers
136 views

FFT based image registration in python

I found simple code in python for image registration here in simple case of translation we have: def translation(im0, im1): """Return translation vector to register images.""" shape = ...
1
vote
1answer
84 views

Opencv: Fill color in a contoured image

thanks for reading this in advance. I'm doing a credit card OCR related project, one step of which requires filling colors to an already contoured image. Sample images include: ...
1
vote
2answers
39 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
58 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 ...
0
votes
1answer
40 views

hit and miss transform for detecting branched point and endpoint in scikit-image

I have 2 functions that use mahotas python library for detecting branched point and end point in an image. The 2 functions: def branchedPoints(skel): branch1=np.array([[2, 1, 2], [1, 1, 1], [2, ...
2
votes
2answers
101 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
1answer
64 views

How can i convert images from scikit-image to opencv2 and other libraries?

I tried to find contour with cv2 python library in a skeletonized image created with scikit-image and i got this error: contours, hierarchy = ...
0
votes
0answers
32 views

Labeling dynamic contours whose size changes frame to frame

Is there a way of recognize and label contours whose size changes frame to frame with openCV Some of the contour can also vanish after few frames. Some contours can appear after few frames etc., ...
1
vote
1answer
42 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 ...
0
votes
1answer
68 views

How can i detect number of segments in a circle in a skeletonized image?

I have a skeleton image of wheels with 2,4, or 6 diameters drawn. I have also branched point coordinates. I think about 2 ways for detecting the different wheels: Counting black areas inside the ...
0
votes
1answer
45 views

How can i apply proportionally dilation operation to binary images?

I have to make dilation on binary images My problem is adapting dilation operation on difference sizes of binary images. large image large image dilated small image small image dilated I want to ...
1
vote
2answers
101 views

Blur image using Python-errors

I need to blur an image by taking a kernel K and averaging the values in the 2D array and setting the center value to the average of K. Here is the code I have written to do so... def Clamp(pix): ...
1
vote
3answers
49 views

Mirror Image but wrong size

I am trying to input an image (image1) and flip it horizontally and then save to a file (image2). This works but not the way I want it to currently this code gives me a flipped image but it just ...
0
votes
1answer
84 views

Mirror an image using Python

I need to flip a picture horizontally, without using the reverse function, I thought I had it right but the returned image is just the bottom right corner of the picture and it is not flipped. The ...
0
votes
2answers
100 views

Error when flipping an image horizontally in Python

I need to flip a picture horizontally, without using the reverse function, I thought I had it right but the error I get is Traceback (most recent call last): File "<pyshell#9>", line 1, in ...
0
votes
2answers
82 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
1answer
87 views

How can i get coordinates point of a skeleton?

I create skeleton images from binary images, like that I detect end points of that skeletons with mahotas python library but it returns me the full image array with 1 value for end point and zero the ...
3
votes
3answers
119 views

How can i find cycles in a skeleton image with python libraries?

I have many skeletonized images like this: How can i detect a cycle, a loop in the skeleton? Are there "special" functions that do this or should I implement it as a graph? In case there is only ...
2
votes
1answer
60 views

Vectorizing Photos: Finding an Adapted Algorithm [closed]

As a little project, I've decided I want to write a small raster to vector converter. Lots and lots of resources are available online, but many fewer actual implementations can give me any kind of ...
0
votes
0answers
62 views

Python - AttributeError: __getitem__

I am required to access all images in a folder and store it in a matrix using python. Here is my code. import Image import os from PIL import Image from numpy import * import numpy as np #import ...
1
vote
1answer
85 views

Image to matrix using python

I am required to access all images in a folder and store it in a matrix. I was able to do it using matlab and here is the code: input_dir = 'C:\Users\Karim\Downloads\att_faces\New Folder'; image_dims ...
3
votes
2answers
138 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 ...
0
votes
0answers
58 views

How can i know if a skeleton is a closed polygon or not and in this case get its extreme points?

I have many skeleton images (like that: https://docs.google.com/file/d/0ByS6Z5WRz-h2QlJuSFNUS09IenM/edit?usp=sharing). I think that if i can get coordinates of extreme points (that i need for other ...
0
votes
1answer
47 views

Python - How to read a set of images and put it in a matrix? [closed]

I need to read a set of images in python using and put it into a matrix to be able to preform PCA (principle component analysis). All the images are in one folder.
0
votes
0answers
73 views

Python: Get Image size WITHOUT loading image into memory

I understand that you can get the image size using PIL in the following fashion from PIL import Image im = Image.open(image_filename) width, height = im.size However, I would like to get the image ...
1
vote
1answer
364 views

Detect largest rectangle from an image using OpenCV

I asked a previous question here and following the advice from the answer I built the below program which I thought would detect large rectangle but it doesn't detect the rectangle at all. It does ...
1
vote
2answers
133 views

Cropping out an image from an existing image

I would like to crop out an image from an existing image. I've taken an image and applied monochrome on it with threshold 98% using imagemagick (is this doable in openCV?) The resulting image is ...
2
votes
1answer
112 views

Taking parts of one image to create another image

I'm working with images from which I would like to take parts out and make one new image. I can make use of ImageMagick or OpenCV. Here is a sample image: From this image I would like to take out ...
1
vote
2answers
510 views

How to determine a region of interest and then crop an image using OpenCV

I asked a similar question here but that is focused more on tesseract. I have a sample image as below. I would like to make the white square my Region of Interest and then crop out that part ...
0
votes
2answers
147 views

How can I cycle through individual pixels in an image and output the highest RGB valued pixel of each row?

I am trying to write a block of code in Python that will import an image file such as file.bmp. I would like it to read the RGB values of each pixel in the image and then output the highest RGB valued ...
0
votes
0answers
70 views

How can i find junction points in a skeletonized image?

I found here a code for finding junction points of a skeletonized image. The code doesn't find all junctions but only the main junction point. How can i adapt this code for finding all junction ...
4
votes
1answer
773 views

CamShift + Face detection in OpenCv

I'm currently combing two examples from OpenCv which let you detect your face and track object. The purpose is to first detect the face and then track it. My code currently : import numpy as np ...
0
votes
1answer
104 views

Convert Image ( png ) To Matrix And Then To 1D Array

I have 5 pictures and i want to convert each image to 1d array and put it in a matrix as vector. I want to be able to convert each vector to image again. img = Image.open('orig.png').convert('RGBA') ...
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 ...
2
votes
1answer
389 views

How do I plot FFT in Numpy

This seems like a very easy question, yet I couldn't find any documentation for this. I have an image in Numpy, and i want to imshow the FFT. In Matlab I can just do F = fft(myimg) imshow(F) I ...

1 2 3 4 5 12