标签:平滑 均值滤波
具体说明参考上一篇文章:
Matlab代码:
%平滑均值滤波-Lab10 file='Datanog7'; x=importdata([file,'/A_x.txt']); subplot(2,1,1); plot(x); b=filter2(fspecial('average',10),x)/255; subplot(2,1,2); plot(b);
图1-整体
图1-局部放大
标签:平滑 均值滤波
原文地址:http://blog.csdn.net/guomutian911/article/details/41576689