How can I define two tones in a grayscale image

2 visualizaciones (últimos 30 días)
Stelios Fanourakis
Stelios Fanourakis el 12 de Mayo de 2019
Comentada: Jan el 19 de Mayo de 2019
Hi
I have an ultrasound image with lots of gray tones. I want to threshold the image by defining two of its tones. The higher intensity (white tone) and the lowest intensity (darkest gray tone). All other tones in the middle should be eliminated.
How can I do this?
Thanks

Respuesta aceptada

Jan
Jan el 17 de Mayo de 2019
Editada: Jan el 19 de Mayo de 2019
You cannot eliminate colors in a gray-scale image, but only set them to another value.
img(img > 67 & img < 128) = 0;
Here all gray scale values between 68 and 127 are set to 0.
  3 comentarios
Stelios Fanourakis
Stelios Fanourakis el 19 de Mayo de 2019
"Here all gray scale values between 64 and 127 are set to 0."
You mean values between 68 and 127 are set to 0
Jan
Jan el 19 de Mayo de 2019
@Stelios: Correct. This was a typo.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Ultrasound Imaging en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by