How to erode certain parts of an image

5 views (last 30 days)
Hey does anyone know the best way to erode certain parts of a binary image. I need to get rid of the left hand side that is the black box with the stars and IRL in it and the dashes between 131 CN 37.
I have tried imerode rectangle, square, disk and non of them have gotten rid of what I needed. Any help would be great!Binary.jpg

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 8 Nov 2019
Edited: KALYAN ACHARJYA on 8 Nov 2019
You can do that in multiple ways:
result1=bwareafilt(binary_image,1);
result2=~bwareafilt(~result1,9);
imshow(result2)
678.png
  2 Comments
Adam Kelly
Adam Kelly on 8 Nov 2019
Yes thank you so much, I have to know try count the numbers and letters so I am doing that!

Sign in to comment.

More Answers (0)

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!