Applying bilateral 3x3 filtering

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

Syntax

C#
public Image<TColor, TDepth> SmoothBilatral(
	int kernelSize,
	int colorSigma,
	int spaceSigma
)
Visual Basic (Declaration)
Public Function SmoothBilatral ( _
	kernelSize As Integer, _
	colorSigma As Integer, _
	spaceSigma As Integer _
) As Image(Of TColor, TDepth)
Visual C++
public:
Image<TColor, TDepth>^ SmoothBilatral(
	int kernelSize, 
	int colorSigma, 
	int spaceSigma
)

Parameters

kernelSize
Type: System..::.Int32
The size of the bilatral kernel
colorSigma
Type: System..::.Int32
Color sigma
spaceSigma
Type: System..::.Int32
Space sigma

Return Value

The result of bilateral smooth

See Also