How can I define two tones in a grayscale image

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Jan
Jan il 17 Mag 2019
Modificato: Jan il 19 Mag 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 Commenti
Stelios Fanourakis
Stelios Fanourakis il 19 Mag 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 il 19 Mag 2019
@Stelios: Correct. This was a typo.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Ultrasound Imaging in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by