Image thresholding using min and max pixel intensity values

15 views (last 30 days)
Hi,
I'm trying to create a mask based on a minimum and maximum intensity value. All the examples I find are basically thresholding the image from a fixed value (say, 176) to 255. What I need to do is to mask pixels between 165 and 166 to find ROIs on the image.
Thanks!

Accepted Answer

Image Analyst
Image Analyst on 3 Sep 2018
Try this:
mask = grayImage >= 165 & grayImage <= 166 % Mask of only pixels with GLs of 165 and 166
grayImage(~mask) = 0; % blacken outside the mask.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!