Skip to content
Advertisement

Simple method to extract specific color range from an image in Python?

I’m trying to extract a specific color from an image within a defined RGB range using the OpenCV for python module. In the example below I am trying to isolate the fire from the exhaust of the space shuttle between yellow and white RGB values and then print out the percentage of RGB values within that range compared to the rest of the image.

Here is my minimal working example:

JavaScript

This is the output image. Its from wikipedia.

enter image description here

JavaScript

However this does not seem to work because I get 0% of pixels between the yellow and white values. I’m not really sure where I’m going wrong:

JavaScript

And the output graph appears to be blank with a blue/purple image:

enter image description here

Note I haven’t used OpenCV’s built-in image viewers such as cv.imshow(), cv.waitKey() and cv.destroyAllWindows() because calling them kept crashing my IDE (Spyder 3.3.1) on Windows 8.1. Not sure if this is why the image is appearing blue/purple?

Also when I just try to output the original image, it appears in a strange inverted color format:

JavaScript

enter image description here

Anyway, I have tried following a similar method to detect a specific color range previously described here however that particular method gave me problems during compilation and has frozen and crashed my computer several times, when I try to implement something like this:

JavaScript

I guess what I’m tried to achieve here is something like the image below where only the colors between yellow and white are displayed, and then print out the percentage of pixels consisting of these colors. For the image below I just filtered out all colors below RGB (255, 255, 0) using a basic image processing software.

Is there a way to achieve this using the code I have already written or similar?

enter image description here

EDIT 1: Followed the advice below to convert to HSV color space first. However it still doesn’t work and the yellow to white pixel percentage is still 0%. Output graphs are still the same and showing all black or purple. Also I managed to get cv.imshow() working by passing 1 to cs2.waitKey(1). (Doesn’t work with 0 for some reason.)

JavaScript

Output

JavaScript

Advertisement

Answer

It was a pretty simple issue; you gave a larger color before a smaller one to cv.inRange, so there was no valid intersection! Here’s some working code that shows the output. This should be easy to adapt into your own script.

JavaScript

enter image description here

Advertisement