Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 CImg get_FFT() 函数的返回值有点困惑。
get_FFT()
傅立叶变换应该给我一个实部和虚部。 get_FFT()返回带有两个图像的 CImgList - 哪个是真实的,哪个是虚部?文档中似乎没有任何线索。
而且我还需要从中获得幅度和相位。IIRC振幅是这样计算的(realImg.pow(2) + imagImg.pow(2)).sqrt()
(realImg.pow(2) + imagImg.pow(2)).sqrt()
我如何获得相位?
相位角可以使用计算
CImg<float> PhaseAngle = imagImage.get_atan2(realImg)