Perform the convolution with kernel on image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Image<TColor, float> operator *(
	Image<TColor, TDepth> image,
	ConvolutionKernelF kernel
)
Public Shared Operator * ( _
	image As Image(Of TColor, TDepth), _
	kernel As ConvolutionKernelF _
) As Image(Of TColor, Single)
public:
static Image<TColor, float>^ operator *(
	Image<TColor, TDepth>^ image, 
	ConvolutionKernelF^ kernel
)

Parameters

image
Image<(Of <(TColor, TDepth>)>)
The image
kernel
ConvolutionKernelF
The kernel

Return Value

Result of the convolution

See Also