Accord.Imaging.IntegralImage.IntegralImage C# (CSharp) Method

IntegralImage() protected method

Initializes a new instance of the IntegralImage 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 IntegralImage ( int width, int height ) : System
width int Image width.
height int Image height.
return System
        protected IntegralImage(int width, int height)
        {
            this.width = width;
            this.height = height;
            integralImage = new uint[height + 1, width + 1];
        }