Accord.Imaging.ComplexImage.BackwardFourierTransform C# (CSharp) 메소드

BackwardFourierTransform() 공개 메소드

Applies backward fast Fourier transformation to the complex image.
public BackwardFourierTransform ( ) : void
리턴 void
        public void BackwardFourierTransform()
        {
            if (fourierTransformed)
            {
                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] *= -1;
                    }
                }
            }
        }
    }