Effacer les filtres
Effacer les filtres

how to get the 1st and the 3rd boundary objects in the binary image

4 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 2 Fév 2018
Commenté : Image Analyst le 2 Fév 2018
i segmented an image and got a binary image bw
when i do the below line, i get only 1 numberOfblobs
[labeledImage, numberOfblobs] = bwlabel(bw, 8);
but when i do
structBoundaries = bwboundaries(bw);
i get 5 boundaries, and i need only the 1st and the 3rd boundary objects in the binary image. How to get it in a new binary image with only the first and the third region?

Réponse acceptée

Guillaume
Guillaume le 2 Fév 2018
Modifié(e) : Guillaume le 2 Fév 2018
Isn't it
structBoundaries([1 3])
?
By the way structBoundaries is a very misleading name, implying the variable is a structure when it is actually a cell array.
  1 commentaire
Image Analyst
Image Analyst le 2 Fév 2018
You can use bwselect() or ismember() on the labeled image.
labeledImage = bwlabel(binaryImage);
% Extract blob #3
blob3 = ismember(labeledImage, 3); % blob3 is a binary image.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by