Creating a Colour Mask for an Image in HSV
33 views (last 30 days)
Show older comments
Isabelle Davies
on 30 Jul 2022
Edited: Isabelle Davies
on 2 Aug 2022
Hi there.
I'm trying to create a mask for an image of these three balloons to filter the red balloon, but with HSV rather than RGB. I've managed to do it with RGB (as seen below), but evey attempt at doing it with HSV values has failed.
balloons = imread('balloons.png');
size(balloons)
class(balloons)
imshow(balloons)
mask = balloons(:,:,1) > 80 & balloons(:,:,2) < 100 & balloons(:,:,3) < 100
imshow(mask)
This is what I tried next:
balloons_HSV = rgb2hsv(balloons) ;
This didn't work, so then:
balloons_h = rgb2hsv(80)
balloons_s = rgb2hsv(100)
balloons_v = rgb2hsv(100)
mask_hsv = balloons_HSV(:,:,1) > balloons_h & balloons_HSV(:,:,2) < balloons_s & balloons_HSV(:,:,3) < balloons_v
But this didn't work either, so now I'm out of ideas. Help would be much appreciated!
**Edit: For some reason I forgot that the hue value for pure red is 0, and so when I used rgb2hsv for certain points on the red balloon, I assumed something had gone wrong, but everything was actually correct, and there wasn't anything wrong with my code, but I am still grateful someone tried to provide a solution.
0 Comments
Accepted Answer
Image Analyst
on 30 Jul 2022
Did you try the Color Thresholder app on the Apps tab of the tool ribbon?
Or see my demo:
2 Comments
Image Analyst
on 30 Jul 2022
Yes, run my demo and see the histograms for every color channel and try to see where you'd put the thresholds to get just the red. It will probably be something like the hue is less than 0.1 or greater than 0.9 and the saturation greater than 0.25. But look at the histograms to see where it makes sense to split (threshold) the histogram at.
More Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!