Effacer les filtres
Effacer les filtres

How to isolate the circle from the shaded area?

2 vues (au cours des 30 derniers jours)
Mahmoud
Mahmoud le 1 Fév 2015
Modifié(e) : Matt J le 1 Fév 2015
I would like to have only a shaded area from the picture. I want to remove the circle from the binary image. Any idea?

Réponses (1)

Matt J
Matt J le 1 Fév 2015
How about
A=imread('http://www.mathworks.com/matlabcentral/answers/uploaded_files/24735/D1.png');
A=rgb2gray(A);
outer=~imfill(A,'holes');
outerd=imdilate(outer,ones(5));
newImage = A&~outerd;
  2 commentaires
Mahmoud
Mahmoud le 1 Fév 2015
Amazing!! That worked perfectly! Now, if I want to fill the isolated area to find the area in pixel using regionprops, how can I fill that region?
Matt J
Matt J le 1 Fév 2015
Modifié(e) : Matt J le 1 Fév 2015
B=imerode(~A,ones(3));
S=regionprops(B,'PixelIdxList','Area');
[ar,idx]=sort([S.Area],'descend');
tofill=vertcat(S(idx(1:2)).PixelIdxList);
C=false(size(A));
C(tofill)=1;
result=~imdilate(C,ones(5));

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by