资源简介
srad滤波的matlab算法别人下载的上传
代码片段和文件信息
% Implementation of SRAD Filter
% usage S=srad(IT)
% I- noisy image
% T - threshold (greater than 0).
function S=srad(IT)
tic
[x y]=size(I);
I=double(I);
Ic=double(I);
delta_t = 0.08;
t=1;
eps=0.00000000001; %%防止出现像素为零的点
for t=1:T
qt=exp(-t*.2);
[IxIy] = gradient(Ic); %%梯度变换
di=sqrt(Ix.^2+Iy.^2);
di2=del2(Ic); %%del2 离散拉普
- 上一篇:非抽取小波图像去噪
- 下一篇:多维小波变换工具箱,含具体说明
评论
共有 条评论