How can i separate all the connected regions in a binary image and display them individually.
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sumaiya khan
am 14 Dez. 2018
Bearbeitet: Image Analyst
am 14 Dez. 2018
I have small white pixel areas in my binary image, how can I extract only those white connected pixel areas and display them individually.
Akzeptierte Antwort
Image Analyst
am 14 Dez. 2018
Bearbeitet: Image Analyst
am 14 Dez. 2018
Use bwlabel() and ismember
[labeledImage, numRegions] = bwlabel(binaryImage);
props = regionprops(labeledImage, 'Area')
% Compute all the areas.
allAreas = [props.Area]
% Display each blob in its own figure.
for k = 1 : numRegions
thisRegion = ismember(labeledImage, k);
figure;
imshow(thisRegion);
drawnow;
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!