资源描述:
《基于matlab的图像变换技术》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、傅立叶级数变换:>>i=zeros(35,35);>>f(5:24,13:17)=1;>>f=fft2(f,256,256);>>f2=log(abs(f));Warning:Logofzero.>>imshow(f2,[-1,5],'notruesize');>>colormap(jet);>>colorbar;>>i=zeros(256,256);>>i(124:132,120:136)=1;>>subplot(1,3,1);imshow(i);>>i=im2double(i);>>f1=fft2(i);>>su
2、bplot(1,3,2);imshow(log(1+abs(f1)),[]);>>fc1=fftshift(f1);>>subplot(1,3,3);imshow(fc1);Warning:Displayingrealpartofcomplexinput>Inimshow>ValidateCdataat497Inimshow>ParseInputsat378Inimshowat85>>i1=imread('rice.png');>>i1=im2double(i1);>>f1=fft2(i1);>>fc1=fftshi
3、ft(f1);>>subplot(1,2,1);imshow(i1);>>subplot(1,2,2);imshow(log(1+abs(fc1)));求线性滤波器的频率响应:>>h=fspecial('gaussian');>>freqz2(h);>>f=zeros(1000,1000);>>f(350:649,475:524)=1;>>subplot(2,2,1);imshow(f,'notruesize');>>subplot(2,2,2);f=fftshift(abs(fft2(f)));>>imshow(f
4、,[-1,5],'notruesize');>>f=zeros(1000,1000);>>f(350:649,475:524)=1;>>f=imrotate(f,45,'bilinear','crop');>>subplot(2,2,3);imshow(f,'notruesize');>>f=fftshift(abs(fft2(f)));>>subplot(2,2,4);imshow(f,[-1,5],'notruesize');>>a=magic(3);>>b=ones(3);>>a(8,8)=0;>>b(8,8)
5、=0;>>c=fft2(a).*fft2(b);>>d=ifft2(c);>>d=d(1:5,1:5);>>d=real(d)d=8.00009.000015.00007.00006.000011.000017.000030.000019.000013.000015.000030.000045.000030.000015.00007.000021.000030.000023.00009.00004.000013.000015.000011.00002.0000离散余弦变换:>>rgb=imread('autumn.t
6、if');>>i=rgb2gray(rgb);>>j=dct2(i);>>subplot(1,2,1);imshow(rgb);>>subplot(1,2,2);imshow(log(abs(j)),[]);>>colormap(jet(64));colorbar;>>rgb=imread('autumn.tif');>>i=rgb2gray(rgb);>>j=dct2(i);>>subplot(1,2,1);imshow(rgb);>>subplot(1,2,2);imshow(log(abs(j)),[]);>>
7、colormap(jet(64));colorbar;>>clear;>>rgb=imread('autumn.tif');>>i=rgb2gray(rgb);>>j=dct2(i);>>subplot(1,2,1);imshow(rgb);>>j(abs(j)<10)=0;>>k=idct2(j);>>subplot(1,2,2);imshow(k,[0,255]);>>i=imread('rice.png');>>a=im2double(i);>>subplot(1,2,1);imshow(a);>>d=dctm
8、tx(size(a,1));>>dct=d*a*d';>>subplot(1,2,2);imshow(dct);Walsh--Hadamard变换:>>sq=[1,1,3,1;2,1,2,2];>>fork=1:4wht(:,k)=hadamard(2)*sq(:,k)/2;end;>>wht;>>forj=1:2;a=wht(j,:)';ha