MDBUTMF

版本 1.1.0.0 (567.0 KB) 作者: Suraj Kamya
Modified decision based unsymmetric trimmed median filter
974.0 次下载
更新时间 2014/11/8

查看许可证

% 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

引用格式

Suraj Kamya (2024). MDBUTMF (https://www.mathworks.com/matlabcentral/fileexchange/46563-mdbutmf), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2013b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Digital Filtering 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
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