Performs a convolution using the specific kernel

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

Syntax

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

Parameters

kernel
ConvolutionKernelF
The convolution kernel

Return Value

The result of the convolution

See Also