ImageTColor, TDepthConvolution Method |
http://www.emgu.com
Performs a convolution using the specific kernel
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, float> Convolution(
ConvolutionKernelF kernel,
double delta = 0,
BorderType borderType = BorderType.Reflect101
)
Public Function Convolution (
kernel As ConvolutionKernelF,
Optional delta As Double = 0,
Optional borderType As BorderType = BorderType.Reflect101
) As Image(Of TColor, Single)
public:
Image<TColor, float>^ Convolution(
ConvolutionKernelF^ kernel,
double delta = 0,
BorderType borderType = BorderType::Reflect101
)
member Convolution :
kernel : ConvolutionKernelF *
?delta : float *
?borderType : BorderType
(* Defaults:
let _delta = defaultArg delta 0
let _borderType = defaultArg borderType BorderType.Reflect101
*)
-> Image<'TColor, float32>
Parameters
- kernel
- Type: Emgu.CVConvolutionKernelF
The convolution kernel - delta (Optional)
- Type: SystemDouble
The optional value added to the filtered pixels before storing them in dst - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
The pixel extrapolation method.
Return Value
Type:
ImageTColor,
SingleThe result of the convolution
See Also