Create a convolution kernel using the specific matrix and center

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(
	Matrix<float> kernel,
	Point center
)
Public Sub New ( _
	kernel As Matrix(Of Single), _
	center As Point _
)
public:
ConvolutionKernelF(
	Matrix<float>^ kernel, 
	Point center
)

Parameters

kernel
Matrix<(Of <(<'Single>)>)>
The values for the convolution kernel
center
Point
The center of the kernel

See Also