How to fill holes having area less than some maximum threshold value?
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
peyush
am 18 Jul. 2015
Kommentiert: peyush
am 18 Jul. 2015
I have a binary image, I want to fill only those holes having area less than say 20, and holes having area more than that remains unfilled...how can I do this...any sort of help is appreciated
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 18 Jul. 2015
Invert the image so that the holes are now foreground blobs, then call bwareaopen, and invert again
binaryImage = ~bwareaopen(~binaryImage, 20);
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!