Accord.Imaging.SpeededUpRobustFeaturePoint.ToPointF C# (CSharp) Method

ToPointF() public method

Converts this object into a System.Drawing.PointF.
public ToPointF ( ) : PointF
return System.Drawing.PointF
        public PointF ToPointF()
        {
            return new PointF((float)X, (float)Y);
        }