How to convert an image to frequency domain in MATLAB?

98 vues (au cours des 30 derniers jours)
Nayana  Hammini
Nayana Hammini le 27 Déc 2015
I did it with this below code.
r=imread('C:\Users\Nayana22\Desktop\k.jpg');
figure,imshow(r)
F=fft2(r);
S=fftshift(log(1+abs(F)));
figure,imshow(S,[])
The output of second figure is full blank white page. Please can u tell me what's mistake with this code?
My MATLAB version is R2012a.
Thank u

Réponse acceptée

Image Analyst
Image Analyst le 27 Déc 2015
r is not an RGB image is it? Verify and run this and tell me what it says
[rows, columns, numberOfColorChannels] = size(r)
I know this works for the RGB demo image because I convert it to grayscale:
grayImage = imread('peppers.png');
% Get the dimensions of the image.
% numberOfColorBands should be = 1.
[rows, columns, numberOfColorBands] = size(grayImage);
if numberOfColorBands > 1
% It's not really gray scale like we expected - it's color.
% Convert it to gray scale by taking only the green channel.
grayImage = grayImage(:, :, 2); % Take green channel.
end
% Display the original gray scale image.
subplot(2, 1, 1);
imshow(grayImage, []);
fontSize = 20;
title('Original Grayscale Image', 'FontSize', fontSize, 'Interpreter', 'None');
% Set up figure properties:
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
% Get rid of tool bar and pulldown menus that are along top of figure.
set(gcf, 'Toolbar', 'none', 'Menu', 'none');
% Give a name to the title bar.
set(gcf, 'Name', 'Demo by ImageAnalyst', 'NumberTitle', 'Off')
% Display the original gray scale image.
subplot(2, 1, 2);
F=fft2(grayImage);
S=fftshift(log(1+abs(F)));
imshow(S,[]);
title('Spectrum Image', 'FontSize', fontSize, 'Interpreter', 'None');
  3 commentaires
roni zidane
roni zidane le 18 Fév 2019
Hi @Image analyst,
How will i reconstruct my filtered freqency domain image data to original image after using the following code..
F=fft2(grayImage);
S=fftshift(log(1+abs(F)));
W = wiener2(S); % filter a gray image by 3x3 neighbourhood in freq domain.
% now i want to get a resulting filtered gray image
% which steps to follow?
FiltImg = ... % how do i convert the freq domain to spacial/time domain?
Seyed Amirreza Kabodian
Seyed Amirreza Kabodian le 27 Août 2022
why do you do this?
--> S=fftshift(log(1+abs(F)));
is that any reason for this ?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by