ImageTColor, TDepthSmoothBilateral Method |
http://www.emgu.com
Applying bilateral 3x3 filtering
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> SmoothBilateral(
int kernelSize,
int colorSigma,
int spaceSigma
)
Public Function SmoothBilateral (
kernelSize As Integer,
colorSigma As Integer,
spaceSigma As Integer
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothBilateral(
int kernelSize,
int colorSigma,
int spaceSigma
)
member SmoothBilateral :
kernelSize : int *
colorSigma : int *
spaceSigma : int -> Image<'TColor, 'TDepth>
Parameters
- kernelSize
- Type: SystemInt32
The size of the bilateral kernel - colorSigma
- Type: SystemInt32
Color sigma - spaceSigma
- Type: SystemInt32
Space sigma
Return Value
Type:
ImageTColor,
TDepthThe result of bilateral smooth
See Also