FFT2 of an image
4 ビュー (過去 30 日間)
古いコメントを表示
I have an intenisty information of an image. I have performed an FFT2 of that image. FFT2 gives the lower and higher frequencies in the frequency domain of that image. Now the result I got is the amplitude or intensity of those frequencies?
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 10 月 7 日
You can use abs(): https://www.mathworks.com/help/matlab/ref/abs.html on the output of fft2() to get the intensity values.
3 件のコメント
Ameer Hamza
2020 年 10 月 7 日
Yes, you are correct. The abs() of fft2() gives the magnitude. You then need to divide by the number of samples in original signals to get the amplitude. And the square of amplitude will be intensity.
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!