?? sy1.m
字號(hào):
X=imread('cameraman.tif');
subplot(2,2,1)
imshow(X,map);
fftI=fft2(X);
A=abs(fftI);
A=[(A-min(min(A)))/(max(max(A))-min(min(A)))]*255;
subplot(2,2,3)
imshow(A);
sfftI=fftshift(fftI);
B=abs(sfftI);
B=[(B-min(min(B)))/(max(max(B))-min(min(B)))]*255;
subplot(2,2,4)
imshow(B);
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -