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

Compute() public method

Computes the moments for the specified image.
public Compute ( Bitmap image ) : void
image System.Drawing.Bitmap The image whose moments should be computed.
return void
        public void Compute(Bitmap image)
        {
            Compute(image, new Rectangle(0, 0, image.Width, image.Height));
        }

Same methods

MomentsBase::Compute ( Bitmap image, Rectangle area ) : void
MomentsBase::Compute ( BitmapData image ) : void
MomentsBase::Compute ( BitmapData image, Rectangle area ) : void
MomentsBase::Compute ( UnmanagedImage image ) : void
MomentsBase::Compute ( UnmanagedImage image, Rectangle area ) : void
MomentsBase::Compute ( float image, Rectangle area ) : void