How do we take the inverse fourier transformof this image
8 ビュー (過去 30 日間)
古いコメントを表示
I need to find the inverse tramsform of the second image
0 件のコメント
採用された回答
Setsuna Yuuki.
2020 年 12 月 6 日
Your image:
img = imread('imagen','jpg');
h = ifft2(img); %inverse fourier transform
imagesc(abs(h(:,:,1)));
inverse fourier transform:
[r,c,~] = size(h);
H = abs(h(fix(c/2):end,fix(c/2):end,1));
H2 =[H fliplr(H)];
H = [H fliplr(H); flip(H2)];
figure
imagesc(H)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!