help for find the phase value of image using MATLAB coding
이전 댓글 표시
i want to find the phase value of image and i need the code for that can any help me please?
답변 (3개)
Subhadeep Koley
2020년 11월 3일
Hi Moiz, if you are looking for Fourier phase of an image then the below code might help.
% Read the image
img = imread('pout.tif');
img = im2double(img);
% Calculate Fourier phase map
phaseMap = rescale(angle(fft2(img)));
% Visualize results
figure
subplot(1, 2, 1)
imshow(img)
title('Original image')
subplot(1, 2, 2)
imshow(phaseMap)
title('Fourier phase map')
댓글 수: 8
moiz shaikh
2020년 11월 4일
Subhadeep Koley
2020년 11월 4일
I've already displayed the phase image using imshow(). Can you elaborate what kind of graph you're looking for?
Subhadeep Koley
2020년 11월 4일
Moiz, can you post the error message, which you're encountering?
moiz shaikh
2020년 11월 4일
moiz shaikh
2020년 11월 4일
Subhadeep Koley
2020년 11월 4일
Can you provide an example image of your "desired output"?
moiz shaikh
2020년 11월 4일
moiz shaikh
2020년 11월 4일
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
