how to display 4 large connected components out of 20 in an image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how to display 4 large connected components out of 20 in an image?
Antworten (1)
Image Analyst
am 10 Dez. 2015
There is no bwfilt() function that I've heard of. Use bwareafilt(). It does not care in the slightest where your binary image originated, like if it was from a medical image or some other image.
biggest4 = bwareafilt(binaryImage, 4);
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!