Create a convolution kernel with the specific number of rows and cols

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public ConvolutionKernelF(
	int rows,
	int cols
)
Public Sub New ( _
	rows As Integer, _
	cols As Integer _
)
public:
ConvolutionKernelF(
	int rows, 
	int cols
)

Parameters

rows
Int32
The number of raws for the convolution kernel
cols
Int32
The number of columns for the convolution kernel

See Also