Click or drag to resize

CvInvokeBilateralFilter Method

http://www.emgu.com
Applies the bilateral filter to an image.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void BilateralFilter(
	IInputArray src,
	IOutputArray dst,
	int d,
	double sigmaColor,
	double sigmaSpace,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: Emgu.CVIInputArray
Source 8-bit or floating-point, 1-channel or 3-channel image.
dst
Type: Emgu.CVIOutputArray
Destination image of the same size and type as src .
d
Type: SystemInt32
Diameter of each pixel neighborhood that is used during filtering. If it is non-positive, it is computed from sigmaSpace .
sigmaColor
Type: SystemDouble
Filter sigma in the color space. A larger value of the parameter means that farther colors within the pixel neighborhood (see sigmaSpace ) will be mixed together, resulting in larger areas of semi-equal color.
sigmaSpace
Type: SystemDouble
Filter sigma in the coordinate space. A larger value of the parameter means that farther pixels will influence each other as long as their colors are close enough (see sigmaColor ). When d>0 , it specifies the neighborhood size regardless of sigmaSpace. Otherwise, d is proportional to sigmaSpace.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Border mode used to extrapolate pixels outside of the image.
See Also