Follow up: Found this file which shows the correct way of calculating energy in Option B. It turns out that you have to take the square of the fft first and then abs value.
Energy calculated from an image doesn't match with the energy calculated from its Fourier transform
2 次查看(过去 30 天)
显示 更早的评论
Parseval's theorem (link below) says that these energies will be same. Here's how I calculate energy from image and Fourier domain respectively:
a. Energy (from image) =
sum (image.^2)
b. Energy (from FT) =
sum ( abs(fft2(image)) .^2)
I was wondering if there are more steps required for option b.
0 个评论
采纳的回答
更多回答(1 个)
David Goodmanson
2017-1-17
编辑:David Goodmanson
2017-1-17
Hello IPN, I assume you mean sum(sum(...)) rather than sum(...). It appears that you are assuming a constant of proportionality of 1 between the two summations you show above. That's not the case, nor should it be. The specific definition of the transform, the factor in front of that, affects the form of the Parseval result. For example in the link you provided, there is a factor of 1/2pi in front of the energy summation (in frequency), due to their definition of the transform itself.
For the Matlab fft there is a factor of the number of elements in each dimension. If you divide your expression b (only with two sums) by prod(size(image)), the results should agree.
p.s. Go Aggies
2 个评论
David Goodmanson
2017-1-19
编辑:David Goodmanson
2017-1-19
Hi IPN, Well, I don't believe there is any difference between the two lines of code you show above. For a complex number,
abs(z)^2 = abs(z^2)
so the same is true for a sum of them. Just to make sure, I checked on an image. And for a square image the factor of N^2 they divided by is the same as prod(size(image)). What counts, though, is that you got the result you were looking for.
另请参阅
类别
在 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!