ConvolutionKernelF Constructor (Single, Point) |
http://www.emgu.com
Create a convolution kernel using the specific floating point matrix and center
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic ConvolutionKernelF(
float[,] kernel,
Point center
)
Public Sub New (
kernel As Single(,),
center As Point
)
public:
ConvolutionKernelF(
array<float,2>^ kernel,
Point center
)
new :
kernel : float32[,] *
center : Point -> ConvolutionKernelF
Parameters
- kernel
- Type: SystemSingle
The values for the convolution kernel - center
- Type: System.DrawingPoint
The center for the convolution kernel
See Also