Accord.Math.Geometry.KCurvature.KCurvature C# (CSharp) Method

KCurvature() public method

Initializes a new instance of the KCurvature class.
public KCurvature ( int k, DoubleRange theta ) : System
k int The number K of previous and posterior /// points to consider when find local extremum points.
theta AForge.DoubleRange The theta angle range (in /// degrees) used to define extremum points..
return System
        public KCurvature(int k, DoubleRange theta)
        {
            this.K = k;
            this.Theta = theta;
            this.Suppression = k;
        }