Applying bilateral 3x3 filtering

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

Syntax

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

Parameters

kernelSize
Int32
The size of the bilatral kernel
colorSigma
Int32
Color sigma
spaceSigma
Int32
Space sigma

Return Value

The result of bilateral smooth

See Also