Change exact area in binary images from 1 to 0
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Eliska Paulikova
le 5 Nov 2022
Commenté : Eliska Paulikova
le 5 Nov 2022
Hello, I have this binary image, I know the center and the radius of that circle, and I would like to change this circle to black so from 1 to 0. My goal is to see only the little line without the circle. How can I do it?
Thank you so much
0 commentaires
Réponse acceptée
Matt J
le 5 Nov 2022
load BW
hole = bwareafilt(~BW,1,'smallest') ;
BW=BW& ~imdilate(hole,strel('disk',5));
imshow(BW)
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!