Meanthresh local image thresholding

Version 1.0.0.0 (4.31 KB) by Jan Motl
Meanthresh performs a simple local image thresholding.
1.2K Downloads
Updated 17 May 2013

View License

The algorithm calculates the mean value in a window and if the pixel's intensity is above the mean the pixel is set to white colour, otherwise the pixel is set to black colour. To increase the resistance to noise the threshold value can be shifted by a constant c. The pseudocode:

if (pixel >= mean-c)
pixel = 1;
else
pixel = 0;
end

Cite As

Jan Motl (2024). Meanthresh local image thresholding (https://www.mathworks.com/matlabcentral/fileexchange/41787-meanthresh-local-image-thresholding), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R13
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0