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

ToIntPoint() public method

Converts the feature point to a Accord.IntPoint.
public ToIntPoint ( ) : Accord.IntPoint
return Accord.IntPoint
        public Accord.IntPoint ToIntPoint()
        {
            return new Accord.IntPoint((int)X, (int)Y);
        }