Create a convolution kernel using the specific floating point matrix and center

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

Syntax

C#
public ConvolutionKernelF(
	float[,] kernel,
	Point center
)
Visual Basic (Declaration)
Public Sub New ( _
	kernel As Single(,), _
	center As Point _
)
Visual C++
public:
ConvolutionKernelF(
	array<float,2>^ kernel, 
	Point center
)

Parameters

kernel
Type: array< System..::.Single ,2>[,](,)[,]
the values for the convolution kernel
center
Type: System.Drawing..::.Point
the center for the convolution kernel

See Also