Accord.Imaging.Moments.MomentsBase.MomentsBase C# (CSharp) Method

MomentsBase() protected method

Initializes a new instance of the MomentsBase class.
protected MomentsBase ( Bitmap image, Rectangle area, int order ) : System.Drawing
image System.Drawing.Bitmap The image whose moments should be computed.
area System.Drawing.Rectangle The region of interest in the image to compute moments for.
order int The maximum order for the moments.
return System.Drawing
        protected MomentsBase(Bitmap image, Rectangle area, int order)
            : this(order)
        {
            Compute(image, area);
        }

Same methods

MomentsBase::MomentsBase ( Bitmap image, int order ) : System.Drawing
MomentsBase::MomentsBase ( UnmanagedImage image, Rectangle area, int order ) : System.Drawing
MomentsBase::MomentsBase ( UnmanagedImage image, int order ) : System.Drawing
MomentsBase::MomentsBase ( float image, Rectangle area, int order ) : System.Drawing
MomentsBase::MomentsBase ( float image, int order ) : System.Drawing
MomentsBase::MomentsBase ( int order ) : System.Drawing