How can i separate all the connected regions in a binary image and display them individually.

12 views (last 30 days)
I have small white pixel areas in my binary image, how can I extract only those white connected pixel areas and display them individually.

Accepted Answer

Image Analyst
Image Analyst on 14 Dec 2018
Edited: Image Analyst on 14 Dec 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

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!