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

SpeededUpRobustFeaturePoint() public method

Initializes a new instance of the SpeededUpRobustFeaturePoint class.
public SpeededUpRobustFeaturePoint ( double x, double y, double scale, int laplacian ) : System
x double The x-coordinate of the point in the image.
y double The y-coordinate of the point in the image.
scale double The point's scale.
laplacian int The point's laplacian value.
return System
        public SpeededUpRobustFeaturePoint(double x, double y, double scale, int laplacian)
        {
            this.X = x;
            this.Y = y;
            this.Scale = scale;
            this.Laplacian = laplacian;
        }

Same methods

SpeededUpRobustFeaturePoint::SpeededUpRobustFeaturePoint ( double x, double y, double scale, int laplacian, double orientation, double response ) : System
SpeededUpRobustFeaturePoint::SpeededUpRobustFeaturePoint ( double x, double y, double scale, int laplacian, double orientation, double response, double descriptor ) : System