AForge.Imaging.Filters.Convolution.Convolution C# (CSharp) Method

Convolution() public method

Initializes a new instance of the Convolution class.
Invalid kernel size is specified. Kernel must be /// square, its width/height should be odd and should be in the [3, 25] range. Divisor can not be equal to zero.
public Convolution ( int kernel, int divisor ) : System
kernel int Convolution kernel.
divisor int Divisor, used used to divide weighted sum.
return System
        public Convolution( int[,] kernel, int divisor ) : this( )
        {
            Kernel = kernel;
            Divisor = divisor;
        }

Same methods

Convolution::Convolution ( ) : System
Convolution::Convolution ( int kernel ) : System