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
) |
Return Value
The result of bilateral smooth
See Also