modify this code to detect yellow colour
14 次查看(过去 30 天)
显示 更早的评论
where should I modify to get the result of yellow colour
http://www.codeproject.com/Questions/83784/Matlab-colour-detection.aspx
please anyone show to me
0 个评论
回答(3 个)
Jan
2011-4-1
What is "yellow"? A color with high red and green components:
yellow_redThreshold = 200;
yellow_greenThreshold = 200;
yellowMask = (redBand > yellow_redThreshold) & ...
(greenBand > yellow_greenThreshold);
Perhaps you want a low blue component also?
...
yellow_blueTreshold = 100;
yellowMask = (blueBand < yellow_blueTreshold) & ...
(redBand > yellow_redThreshold) & ...
(greenBand > yellow_greenThreshold);
I'd prefer the HSV color space to determine a color.
2 个评论
paf CEO
2011-4-6
HI
I am new to Image processing, i want to make a programe in matlab where i can detect colour " red " , "green" & "blue "
i will save image in workspace /current directory , and then by using if else statment i will detect whats the colour of image ,if image is green it should display "green", if it is red then it should display "red" similarly for blue
if any one knows this , reply me back with coding
Jan
2011-4-6
@paf CEO: Your message is actually not a commant to my answer. Please open a new thread for a new question.
manasi bharambe
2016-3-26
In the similar manner, how can I modify the above given code to detect orange colour in the image. please help
2 个评论
Abdou dgm
2017-3-17
please can you change the code to get the yellow color or tell us how to use hsv methode to get the yellow.
另请参阅
类别
在 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!
