MDBUTMF

Modified decision based unsymmetric trimmed median filter
985 download
Aggiornato 8 nov 2014

Visualizza la licenza

% Modified decision based unsymmetric trimmed median filter for gray image
% im = input image
% K = length to compute window win=(2*l)+1
% n = Noise density of Salt & Pepper Noise
% out = output image
% Code developed by: Suraj Kamya
% kamyasuraj@yahoo.com
% Other used files
% rpadd - removing padding
% trimf - trimmed meadian filter
% PSN - Peak Signal to noise ratio
% IEF - Image Enhancement Factor

Cita come

Suraj Kamya (2025). MDBUTMF (https://it.mathworks.com/matlabcentral/fileexchange/46563-mdbutmf), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2013b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.1.0.0

Previously trimf.m file is missing. Its updated now and follow the example given.
>> im=imread('bgray.jpg');
>> K=1;
>> n=0.1;
>> res=mdbutmfg(im,K,n);

1.0.0.0