Accord.Imaging.FastRetinaKeypointPattern.PatternPoint.PatternPoint C# (CSharp) Method

PatternPoint() public method

public PatternPoint ( float x, float y, float sigma ) : Accord.Math
x float
y float
sigma float
return Accord.Math
            public PatternPoint(float x, float y, float sigma)
            {
                this.x = x;
                this.y = y;
                this.sigma = sigma;
            }
FastRetinaKeypointPattern.PatternPoint