How to using the color intensity of each fruit, segment the three different fruits.
4 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Image Analyst
2024-10-16
This looks like a homework problem. If you have any questions ask your instructor or read the link below to get started:
Obviously, if it is homework, we can't give you the full solution because you're not allowed to turn in our code as your own. But search the forum for the tag "color segmentation" (click on the tag on the right hand side of this page) and you'll find lots of examples you can adapt.
One way could be to convert from RGB to HSV and do kmeans on the hue channel, since I think you'll find the most contrast in that channel. Since the apple has orange in it, you'll have to do a hole filling on each segmented color with imfill. Tell kmeans that k=4 since there are 4 colors there (red, orange, yellow, & white).
Also see color segmentation demos in my File Exchange. Image Analyst's File Exchange
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!