ImageTColor, TDepthSmoothBilatral Method |
http://www.emgu.com
Applying bilateral 3x3 filtering
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic 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
)
member SmoothBilatral :
kernelSize : int *
colorSigma : int *
spaceSigma : int -> Image<'TColor, 'TDepth>
Parameters
- kernelSize
- Type: SystemInt32
The size of the bilatral kernel - colorSigma
- Type: SystemInt32
Color sigma - spaceSigma
- Type: SystemInt32
Space sigma
Return Value
Type:
ImageTColor,
TDepthThe result of bilateral smooth
See Also