资源简介
通过使用非局部均值滤波可以实现对自然图像的去噪,效果较好
代码片段和文件信息
function [output]=NLmeansfilter(inputtfh)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% input: image to be filtered
% t: radio of search window
% f: radio of similarity window
% h: degree of filtering
%
% Author: Jose Vicente Manjon Herrera & Antoni Buades
% Date: 09-03-2006
%
% Implementation of the Non local filter proposed for A. Buades B. Coll and J.M. Morel in
% “A non-local algorithm for image denoising“
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Size of the image
[m n]=size(input);
% Memory for the output
Output=zeros(mn);
% Replicate the boundaries of the input image
input2 = padarray(input[f f]‘symmetric‘);
% Used kernel
kernel = make_kernel(f);
kernel = kernel / sum(sum(kernel));
for i=1:m
for j=1:n
i1 = i+ f;
j1 = j+ f;
W1= input2(i1-f:i1+f j1-f:j1+f);
wmax=0;
average=0;
sweight=0;
rmin = max(i1-tf+1);
rmax = min(i1+tm+f);
smin = max(j1-tf+1);
smax = min(j1+tn+f);
for r=rmin:1:rmax
for s=smin:1:smax
if(r==i1 && s==j1) continue; end;
W2= input2(r-f:r+f s-f:s+f);
d = sum(sum(kernel.*(W1-W2).*(W1-W2)));
w=exp(-d/h);
if w>wmax
wmax=w;
end
sweight = sweight + w;
average = average + w*input2(rs);
end
end
average = average + wmax*input2(i1j1);
sweight = sweight + wmax;
if sweight > 0
output(ij) = average / sweight;
else
output(ij) = input(ij);
end
end
end
function [kernel] = make_kernel(f)
kernel=zeros(2*f+12*f+1);
for d=1:f
value= 1 / (2*d+1)^2 ;
for i=-d:d
for j=-d:d
kernel(f+1-if+1-j)= kernel(f+1-if+1-j) + value ;
end
end
end
kernel = kernel ./ f
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2623 2007-09-15 00:51 NLmeansfilter.m
- 上一篇:飞思卡尔智能车经验零基础
- 下一篇:atmega16驱动mpu6050
相关资源
- 直流微网建模,母线电压200V,改进下
- 自校正PID控制算法
- relief算法的代码实现
- 基于形态学的权重自适应图像去噪.
- 斯皮尔曼的等级相关系数
- 互信息的计算
- Zernike矩亚像素边缘检测
- 相位展开传统算法
- 倾斜haar-like feature计算
- m序列_gold及m&walsh序列生成及序列相关
- BP神经网络程序非工具箱
- 深度玻尔兹曼机
- PCB识别包含程序截图和原图
- 无网格方法解悬臂梁问题
- 基于maltab的LED阵列仿真
- 稀疏分解图像重建程序,把图像分解
- 基于ANN的6种2ASK、4ASK、2FSK、4FSK、2P
- 数字图像处理大作业————各种图
- IAPWS_IF97
- CBBA任务分配程序
- Tasi和张正友两种方法仿真程序
- labview读取mat格式文件
- mat格式文件在labview中显示波形
- 心音信号小波去噪
- Turbo码的编解码,可以达到论文中仿真
- JPEG压缩源码(已经经过测试)
- 基于CURVELET变换的自适应阈值图像去噪
- 高斯低通滤波器(GLPF)
- 智能优化算法选址,源代码,有注解
- 自适应各向异性扩散
评论
共有 条评论