How to erode certain parts of an image

6 visualizaciones (últimos 30 días)
Adam Kelly
Adam Kelly el 8 de Nov. de 2019
Comentada: Adam Kelly el 8 de Nov. de 2019
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

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Filtering and Enhancement en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by