I am beginner in Image processing. I want to plot of phase spectrum using MATLAB of any image say Lena or cameraman .
I am adding code what i tried but I don't understand anything about the plot.
how to find locations of frequencies present in an image using phase spectrum ?
image=imread('E:\cameraman.jpg');
figure,imshow(image);
image=rgb2gray(image);
fourier_transform=fftn(image);
phase_spectrum=angle(fourier_transform);
figure,imshow(phase_spectrum)