Complex image.

Namespace:  AForge.Imaging
Assembly:  AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public class ComplexImage : ICloneable

Remarks

The class is used to keep image represented in complex numbers sutable for Fourier transformations.

Sample usage:

CopyC#
// create complex image
ComplexImage complexImage = ComplexImage.FromBitmap( image );
// do forward Fourier transformation
complexImage.ForwardFourierTransform( );
// get complex image as bitmat
Bitmap fourierImage = complexImage.ToBitmap( );

Initial image:

Fourier image:

Inheritance Hierarchy

System..::.Object
  AForge.Imaging..::.ComplexImage

See Also