Performs a convolution using the specific kernel

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

Syntax

C#
public Image<TColor, float> Convolution(
	ConvolutionKernelF kernel
)
Visual Basic (Declaration)
Public Function Convolution ( _
	kernel As ConvolutionKernelF _
) As Image(Of TColor, Single)
Visual C++
public:
Image<TColor, float>^ Convolution(
	ConvolutionKernelF^ kernel
)

Parameters

kernel
Type: Emgu.CV..::.ConvolutionKernelF
The convolution kernel

Return Value

The result of the convolution

See Also