counting holes in an image
15 次查看(过去 30 天)
显示 更早的评论
writing an algorithm that will count the number of holes in the image that do not touch the border
采纳的回答
Image Analyst
2020-3-27
Threshold then call imclearborder() and bwlabel(). Assuming you have dark holes on a bright background:
% Binarize:
binaryImage = grayImage < someValue;
% Remove those touching border
binaryImage = imclearborder(binaryImage);
% Count holes:
[~, numHoles] = bwlabel(binaryImage);
0 个评论
更多回答(1 个)
Walter Roberson
2020-3-26
Invert the image so the holes become solid and the solid gets removed. Remove from that all solid touching the border -- those correspond to holes that were touching the border in the original. Now count the number of solid objects remaining, and that will be the number of holes in the original.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!