i have done 2d dft using fft2 and received phase and magnitude image.how to store that image shown using imshow in separate variable.

imshow(abs(fftshift(image)),[24 10000]). using this im getting the image but how to store it a separate variable for future operation. please tel me except Saveas . if i give a= abs(....); im getting white image of magnitude..help to solve it.

답변 (1개)

I suspect because the values are too high. You might need to rescale your image. This should rescale your image between 0 and 1.
imshow(I,[]);
To save it, just convert it:
I = mat2gray(A, [amin amax])
You can find more info here:

카테고리

도움말 센터File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

질문:

2014년 2월 26일

답변:

2014년 2월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by