How to perform 2-D DFT via 1-D DFT
Show older comments
Take the 1-D DFT of one image, first row-wise 1-D DFT and followed by column-wise 1-D DFT to create the resulting F1(u,v) .
Accepted Answer
More Answers (1)
Wayne King
on 22 Jun 2012
Here is an example that shows you how to do it
X = randn(8,8);
fft2(X)
% now use fft
fft(fft(X).').'
Categories
Find more on Image Category Classification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!