about fourier transform

what is the best reconstruction in term of quality of the image when using fft2 and ifft2 without pre and post processing.

2 件のコメント

Sean de Wolski
Sean de Wolski 2011 年 3 月 22 日
What do you mean "What is the best reconstruction?" Explain your question and you'll get better answers.
si  kijang
si kijang 2011 年 3 月 28 日
Example,if use Radon,the values of angle determine how good result we can get.For Zernike moments,the order will be the manipulated variable. But for fourier i don't know what are the manipulated variables.

回答 (2 件)

Walter Roberson
Walter Roberson 2011 年 3 月 22 日

0 投票

Are you asking: "If I have an image and I fft2() the image, and I ifft2() the result of that, then what is the maximum difference I should expect for any one pixel compared between the original and reconstructed image" ?

1 件のコメント

si  kijang
si kijang 2011 年 3 月 28 日
yes,but i also want ask about:
Example,if use Radon,the values of angle determine how good result we can get.For Zernike moments,the order will be the manipulated variable. But for fourier i don't know what are the manipulated variables.
David Young
David Young 2011 年 3 月 28 日

0 投票

The Discrete Fourier Transform has no parameters to manipulate. The difference between the original and the reconstructed images will always be very small, though non-zero because of rounding errors.
You could explore this experimentally with test code similar to this:
imsize = 100 + ceil(1000*rand);
img = rand(imsize);
ft = fft2(img);
recon = ifft2(ft);
max(abs(img(:)-recon(:)))
which typically produces a result of order 1e-15 on my system.

1 件のコメント

Walter Roberson
Walter Roberson 2011 年 4 月 12 日
From one point of view at least, the parameter for fft would be the number of fft bins to use, and the best would be the same as the number of points along that dimension.

この質問は閉じられています。

質問済み:

2011 年 3 月 22 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by