How can I define two tones in a grayscale image

2 views (last 30 days)
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

Accepted Answer

Jan
Jan on 17 May 2019
Edited: Jan on 19 May 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 Comments
Stelios Fanourakis
Stelios Fanourakis on 19 May 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 on 19 May 2019
@Stelios: Correct. This was a typo.

Sign in to comment.

More Answers (0)

Categories

Find more on Ultrasound Imaging in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!