0
votes
1answer
100 views

Efficient way to find median value of a number of RGB images

I'm playing around with a script in Python where I want to find the median of a number of images of same dimensions. That is, I wan't to take all (red, green and blue) pixels in position [x,y], and ...
3
votes
2answers
117 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 ...
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 ...
0
votes
0answers
72 views

IHow do I convert opencv to PIL with and RGBA format in python?

I am wanting to convert an webcam shot in opencv to PIL so I can read the image pixel for pixel and get the RGB formats. I ussually get the RGBA format when working with PIL but now I get an ...
0
votes
1answer
124 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
votes
1answer
164 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 - ...
2
votes
1answer
241 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 ...
2
votes
1answer
329 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 ...
4
votes
2answers
165 views

How do I locate the rabbit?

I am trying to follow the rabbit in the game winterbells. Here are some screenshots Originally I thought that I could follow a color that only the rabbit had, but it seems that all the objects (i.e. ...
0
votes
1answer
123 views

Why the image color is changed after affine transform using PIL?

I am using image.transform in the Python Imaging Library to apply affine transform to a image of face detection to calibration the face accordding to the position of eyes. The result is right but the ...
0
votes
2answers
428 views

can't decode QR codes from OpenCV image after it has been converted to PIL

I've been using OpenCV methods to get images from my camera. I'd like to decode QR codes from those images using the zbar library, but after I convert the images to PIL to be processed by zbar, it ...
0
votes
1answer
620 views

convert openCV image into PIL Image in Python (for use with Zbar library)

I'm trying to use the Zbar library's QR code detection methods on images I extract with OpenCV's camera methods. Normally the QR code detection methods work with images (jpg, png, etc.) on my ...
3
votes
1answer
589 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 ...
0
votes
1answer
255 views

Use cv.CaptureFromCAM in Django

I use cv.CaptureFromCAM in a Django app, but my script block a this command.Without Django, it works and I can see my webcam turns on. Here's my script : import cv, Image def takePhoto(): ...
-1
votes
1answer
252 views

Translating Python PIL code to Python OpenCV

I'm doing some amateur image analysis using Python, specifically Numpy, PIL and OpenCV. However, I'm not too pleased with the performance of PIL, so I would like to port those parts of the code to ...
1
vote
2answers
1k views

Python PIL Image.tostring('raw') and IplImage->imageData of OpenCV

As stated in documentation: IplImage.imageData (from OpenCV library): A pointer to the aligned image data Image.tostring() (from Python PIL): Returns a string containing pixel data, using ...
3
votes
3answers
493 views

PIL to OpenCV MAT causes color shift

When loading a png image with PIL and OpenCV, there is a color shift. Black and white remain the same, but brown gets changed to blue. I can't post the image because this site does not allow newbies ...
0
votes
1answer
619 views

How to do image stitching using opencv (python), simplecv or pil?

How to do image stitching using opencv (python), simplecv or pil? or any other python library, i have an image which looks like this, created from 200 images, i need to stitch them in the correct ...
1
vote
1answer
2k views

Object tracking in python

I'm working on a program in PYTHON which is able to do the following: A webcam is watching a movement, where an object is moving on a path. The object to be tracked is marked with a big yellow spot. ...
3
votes
1answer
1k views

Anything faster than ImageMagick?

Is there anything faster to ImageMagick ? I'm processing images with different kind of filters so to create effects like old photo, oil paint etc.
4
votes
1answer
2k views

How do I apply a DCT to an image in Python?

I want to apply a Discrete Cosine Transform (as well as the inverse) to an image in Python and I'm wondering what is the best way to do it and how. I've looked at PIL and OpenCV but I still don't ...
9
votes
4answers
10k views

How do I create an OpenCV image from a PIL image?

I want to do some image processing with OpenCV (in Python), but I have to start with a PIL Image object, so I can't use the cvLoadImage() call, since that takes a filename. This recipe (adapted ...