How can I define two tones in a grayscale image

1 Ansicht (letzte 30 Tage)
Stelios Fanourakis
Stelios Fanourakis am 12 Mai 2019
Kommentiert: Jan am 19 Mai 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

Akzeptierte Antwort

Jan
Jan am 17 Mai 2019
Bearbeitet: Jan am 19 Mai 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 Kommentare
Stelios Fanourakis
Stelios Fanourakis am 19 Mai 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 am 19 Mai 2019
@Stelios: Correct. This was a typo.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Ultrasound Imaging finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by