Initializes a new instance of the IntegralImage class.

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

Syntax

C#
protected IntegralImage(
	int width,
	int height
)

Parameters

width
Type: System..::.Int32
Image width.
height
Type: System..::.Int32
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