Getting Spots in banana
3 次查看(过去 30 天)
显示 更早的评论
How to detect blacked spots or disease in banana and draw an color red in spots
0 个评论
采纳的回答
KALYAN ACHARJYA
2020-1-24
编辑:KALYAN ACHARJYA
2020-1-24
rgbImage=imread('ban.jpeg');
subplot(121),imshow(rgbImage);
grayImage=rgb2gray(rgbImage);
[segment,blackSpots]=bwlabel(~im2bw(grayImage,0.7));
% Choose the threshold as per requirements
total_bk_spots=blackSpots-1
%................^ minus 1 for ignoring largest blobbs
subplot(122),imshow(segment);
If not, then do the color thresholding.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!