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

FastRetinaKeypointPattern() public method

public FastRetinaKeypointPattern ( int octaves = 4, float scale = 22.0f ) : Accord.Math
octaves int
scale float
return Accord.Math
        public FastRetinaKeypointPattern(int octaves = 4, float scale = 22.0f)
        {
            this.Octaves = octaves;
            this.Scale = scale;

            build(octaves, scale);
        }