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!