NewTOAPIA.Drawing.image_filter_hamming.calc_weight C# (CSharp) Method

calc_weight() public method

public calc_weight ( double x ) : double
x double
return double
        public double calc_weight(double x)
        {
            return 0.54 + 0.46 * Math.Cos(Math.PI * x);
        }
    };
image_filter_hamming