Click or drag to resize
Accord.NET (logo)

ComplexImage Constructor

Initializes a new instance of the ComplexImage class.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
protected ComplexImage(
	int width,
	int height
)
Request Example View Source

Parameters

width
Type: SystemInt32
Image width.
height
Type: SystemInt32
Image height.
Remarks
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.
See Also