Accord.Imaging.Moments.RawMoments.Reset C# (CSharp) Method

Reset() protected method

Resets all moments to zero.
protected Reset ( ) : void
return void
        protected void Reset()
        {
            M00 = M10 = M01 = 0;
            M11 = M20 = M02 = 0;

            M21 = M12 = 0;
            M30 = M03 = 0;

            InvM00 = 0;

            CenterX = CenterY = 0;
        }