Meanthresh local image thresholding

Version 1.0.0.0 (4,31 KB) von Jan Motl
Meanthresh performs a simple local image thresholding.
1,2K Downloads
Aktualisiert 17 Mai 2013

Lizenz anzeigen

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

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R13
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0