Click or drag to resize

GuidedFilterCreate Method

Factory method, create instance of GuidedFilter and produce initialization routines.

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static GuidedFilter Create(
	InputArray guide,
	int radius,
	double eps
)

Parameters

guide
Type: OpenCvSharpInputArray
guided image (or array of images) with up to 3 channels, if it have more then 3 channels then only first 3 channels will be used.
radius
Type: SystemInt32
radius of Guided Filter.
eps
Type: SystemDouble
regularization term of Guided Filter. eps^2 is similar to the sigma in the color space into bilateralFilter.

Return Value

Type: GuidedFilter

[Missing <returns> documentation for "M:OpenCvSharp.XImgProc.GuidedFilter.Create(OpenCvSharp.InputArray,System.Int32,System.Double)"]

See Also