How to save magnitude and phase from FFT of 10 images in two folder (one for magnitude and another for phase)
1 次查看(过去 30 天)
显示 更早的评论
Storing FFT results in two folder (the first folder for magnitude (100 magnitude images) and another for phase (100 phase images)
my code: srcFiles = dir('C:\Users\Documents\MATLAB\Framesali2\*.png'); % the folder in which % ur images exists for i = 1 : length(srcFiles) filename = strcat('C:\Users\Documents\MATLAB\Framesali2\',srcFiles(i).name); I = imread(filename); %###########################################################3 Gray =rgb2gray(I); % convert all images to gray fft = fft2(Gray); % %Base =rgb2gray(Base1);
figure, imshow(abs(fftshift(fft)),[24 100000]), colormap gray title('FFT Magnitude') figure, imshow(angle(fftshift(fftA)),[-pi pi]), colormap gray title('FFT Phase') end
I'd like to save magnitude images and phase images in 2 separated folders.
Regards
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Measurements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!