How to erode certain parts of an image

8 次查看(过去 30 天)
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

采纳的回答

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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Filtering and Enhancement 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by