Accord.Imaging.CornerFeaturePoint.CornerFeaturePoint C# (CSharp) Method

CornerFeaturePoint() public method

Initializes a new instance of the CornerFeaturePoint class.
public CornerFeaturePoint ( IntPoint point ) : AForge
point AForge.IntPoint
return AForge
        public CornerFeaturePoint(IntPoint point)
        {
            Descriptor = new double[] { point.X, point.Y };
        }
CornerFeaturePoint