can some one help me with this problem. i want each cell separately from this input image. i am uploading the output images which i wants from this input image. you can check the output images in comments. thanks for your time
1 view (last 30 days)
Show older comments
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/198041/image.png)
7 Comments
Accepted Answer
Guillaume
on 3 Dec 2018
Labelise your image, then extract each unique label:
sourceimage = imread('index.png');
labelimage = bwlabel(sourceimage);
numobjects = max(labelimage(:)); %in R2018b: numobjects = max(labelimage, [], 'all');
objectimages = cell(1, numobjects);
for label = 1:numobjects
objectimages{label} = labelimage == label;
figure; imshow(objectimages{label}); %optional display
end
3 Comments
Guillaume
on 3 Dec 2018
If you're trying to isolate the black blobs instead of the white blobs as in your original then you'll have to invert the imge. bwlabel only detects white blobs. Black is always considered background.
More Answers (0)
See Also
Categories
Find more on Geometric Transformation and Image Registration 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!