欢迎来到天天文库
浏览记录
ID:56433434
大小:78.00 KB
页数:2页
时间:2020-06-23
《Butterworth高通滤波器matlab程序(原创).doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、用matlab编写的Butterworth高通滤波程序,可以运行,结果如截图源代码:clearall;closeall;P=input('inputimagedata:');subplot(221);imshow(P);title('原始图像');d=size(P);if(d(3)>1)P=rgb2gray(P);endsubplot(222);imshow(P);title('灰度图像');f=double(P);g=fft2(f);%傅里叶变换g=fftshift(g);%转换数据矩阵[M,N]=size(g);%D0=input('inputn
2、onnegativedhresholdD0=');%n=input('inputtheorderoffilteringn=');D0=10;n=3;n1=fix(M/2);n2=fix(N/2);fori=1:Mforj=1:Nd=sqrt((i-n1)^2+(j-n2)^2);h=1/(1+(D0/d)^(2*n));result(i,j)=h*g(i,j);endendresult=ifftshift(result);X2=ifft2(result);X3=uint8(real(X2));subplot(223)imshow(X3);title(
3、'Butterworht高通滤波结果');subplot(224);imshow(X3+P);title('Butterworth高通滤波增强所得图像');运行结果截图
此文档下载收益归作者所有