Isolate the outline of a shape.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello i have through binarizing and using bwpropfilt i have got the attached image, my question is : does anyone have an idea how i can isolate the outline of the shape in the middle and have it as a shape?
0 commentaires
Réponse acceptée
Matt J
le 31 Août 2021
Modifié(e) : Matt J
le 31 Août 2021
Perhaps as follows?
load Image
BW=bwareafilt(Image,1);
BW=imerode(bwconvhull(BW),strel('disk',20))& ~BW;
BW=imopen(BW,ones(10,1));
BW=bwperim(bwareafilt(BW,1));
imshow(BW); zoom(3)
2 commentaires
Matt J
le 31 Août 2021
Thanks i found a way with bwboundaries, now i have another problem.
If so, you should post it as a new question.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Computer Vision with Simulink 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!