[This is preliminary documentation and is subject to change.]
Applying bilateral 3x3 filtering
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
public Image<TColor, TDepth> SmoothBilatral(
int colorSigma,
int spaceSigma
)
Public Function SmoothBilatral ( _
colorSigma As Integer, _
spaceSigma As Integer _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothBilatral(
int colorSigma,
int spaceSigma
)
Parameters
- colorSigma
- Int32
Color sigma
- spaceSigma
- Int32
Space sigma
Return Value
The result of bilateral smooth
See Also