Accord.Imaging.Moments.RawMoments.Reset C# (CSharp) Méthode

Reset() protected méthode

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

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

            InvM00 = 0;

            CenterX = CenterY = 0;
        }