how to remove Outermost semicircle on the grayscale image?

1 view (last 30 days)
I am attaching the image . Please help me how to remove the outermost semicicrlces.Please anyone can say the method , how to remove it?

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 13 Mar 2020
mask=bwareafilt(~imbinarize(grayImage,0.8),1);
grayImage(~mask)=255;
imshow(grayImage);

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!