this page: https://www.mathworks.com/help/vision/examples/semantic-segmentation-using-deep-learning.html showing example of semantic segmentation. Is there any way to extract (seprate) each object in a different image file?
Kshitij Singh answered .
2025-11-20
thisClass = ismember(labeledImage, classNumberYouWant); % Get a binary image of this class ONLY props = regionprops(thisClass, 'all'); % or whatever...