CURELab.SignLanguage.HandDetector.PointHelper.GetCenter C# (CSharp) Method

GetCenter() public static method

public static GetCenter ( this p ) : Point
p this
return System.Drawing.Point
        public static Point GetCenter(this Point[] p)
        {
            double X = p.Average(x => x.X);
            double Y = p.Average(x => x.Y);
            return new Point((int)X, (int)Y);
        }

Same methods

PointHelper::GetCenter ( this p ) : PointF