AForge.Imaging.ComplexImage.ComplexImage C# (CSharp) Method

ComplexImage() protected method

Initializes a new instance of the ComplexImage class.
The constractor is protected, what makes it imposible to instantiate this class directly. To create an instance of this class FromBitmap(Bitmap) or FromBitmap(BitmapData) method should be used.
protected ComplexImage ( int width, int height ) : System
width int Image width.
height int Image height.
return System
        protected ComplexImage( int width, int height )
        {
            this.width = width;
            this.height = height;
            this.data = new Complex[height, width];
            this.fourierTransformed = false;
        }