0

我正在将代码从 Matlab 重写为 C#。我对数学完全陌生。我必须使用在 AForge.net 库中找到的 FFT 函数,但现在我需要 IFFT。这可以使用 FFT 在几行中计算 IFFT 吗?

Aforge.Net FFT 声明:

 public static void FFT (Complex[] data, Direction direction)
4

1 回答 1

1

来自ComplexImage.cs的图像逆变换。

         FourierTransform.FFT2( data, FourierTransform.Direction.Backward );
            fourierTransformed = false;

            for ( int y = 0; y < height; y++ )
            {
                for ( int x = 0; x < width; x++ )
                {
                    if ( ( ( x + y ) & 0x1 ) != 0 )
                    {
                        data[y, x].Re *= -1;
                        data[y, x].Im *= -1;
                    }
                }
            }
于 2012-08-28T14:50:21.130 回答