Creating a Colour Mask for an Image in HSV
33 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Image Analyst
2022-7-30
Did you try the Color Thresholder app on the Apps tab of the tool ribbon?
Or see my demo:
2 个评论
Image Analyst
2022-7-30
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!