MATLAB: Threshold ranges to BW image

digital image processingimage analysisImage Processing Toolboxthreshold

Hi,
I have a black and white image, and I am wanting to apply three different thresholds of 105-168, 170-200, and 120-140 to calculate the surface area coverage of three different sections within the image.
Could you please tell me how I could achieve this, in terms of the code or a link where I cold read up on this?
Thanks in advance
Syed

Best Answer

Try this:
binaryImage1 = grayImage >= 105 & grayImage <= 168;
binaryImage2 = grayImage >= 170 & grayImage <= 200;
binaryImage3 = grayImage >= 120 & grayImage <= 140;
areaFraction1 = sum(binaryImage1(:)) / numel(grayImage);
areaFraction2 = sum(binaryImage2(:)) / numel(grayImage);
areaFraction3 = sum(binaryImage3(:)) / numel(grayImage);