資源簡介
matlab快速傅里葉變換進行數字圖像處理,讀入一幅灰度圖像并實現圖像的快速傅立葉變換,求變換后的系數分布。
代碼片段和文件信息
I=imread(‘couple.bmp‘);
%L=rgb2gray(I);
subplot(121);imshow(I);title(‘原圖‘);
subplot(122);imhist(I);title(‘直方圖‘);
colorbar;
J=fft2(I);
figure;
subplot(12
- 上一篇:iris數據集
- 下一篇:matlab均衡器67280
評論
共有 條評論