MATLAB: Double Thresholding

thresholding

HI, Can someone show me an example how to apply double thresholding method, were you get to choose T1 and T2 values… ?

Best Answer

There are multiple meanings of "thresholding" that might be appropriate.
One meaning:
NewImage = YourImage >= T1 & YourImage <= T2;
Another:
NewImage = YourImage .* (YourImage >= T1 & YourImage <= T2);
Related Question