Accord.Imaging.IntegralImage2.FromBitmap C# (CSharp) Method

FromBitmap() public static method

Constructs a new Integral image from a Bitmap image.
public static FromBitmap ( Bitmap image ) : IntegralImage2
image System.Drawing.Bitmap The source image from where the integral image should be computed.
return IntegralImage2
        public static IntegralImage2 FromBitmap(Bitmap image)
        {
            return FromBitmap(image, 0, false);
        }

Same methods

IntegralImage2::FromBitmap ( Bitmap image, bool computeTilted ) : IntegralImage2
IntegralImage2::FromBitmap ( Bitmap image, int channel ) : IntegralImage2
IntegralImage2::FromBitmap ( Bitmap image, int channel, bool computeTilted ) : IntegralImage2
IntegralImage2::FromBitmap ( BitmapData imageData ) : IntegralImage2
IntegralImage2::FromBitmap ( BitmapData imageData, bool computeTilted ) : IntegralImage2
IntegralImage2::FromBitmap ( BitmapData imageData, int channel ) : IntegralImage2
IntegralImage2::FromBitmap ( BitmapData imageData, int channel, bool computeTilted ) : IntegralImage2
IntegralImage2::FromBitmap ( UnmanagedImage image ) : IntegralImage2
IntegralImage2::FromBitmap ( UnmanagedImage image, bool computeTilted ) : IntegralImage2
IntegralImage2::FromBitmap ( UnmanagedImage image, int channel ) : IntegralImage2
IntegralImage2::FromBitmap ( UnmanagedImage image, int channel, bool computeTilted ) : IntegralImage2