How Can I save magnitude & phase of 10 gray images in 2 folders

조회 수: 2 (최근 30일)
Ali Noori
Ali Noori 2015년 3월 3일
편집: Ali Noori 2015년 3월 3일
Storing FFT results in two folder (the first folder for magnitude (10 magnitude images) and another for phase (10 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); %########################################################### Gray =rgb2gray(I); % convert all images to gray fftA = fft2(Gray); %
figure, imshow(abs(fftshift(fftA)),[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개)

카테고리

Help CenterFile Exchange에서 Modify Image Colors에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by