Click or drag to resize

XImgprocInvokeGuidedFilter Method

http://www.emgu.com
Simple one-line Guided Filter call.

Namespace:  Emgu.CV.XImgproc
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void GuidedFilter(
	IInputArray guide,
	IInputArray src,
	IOutputArray dst,
	int radius,
	double eps,
	DepthType dDepth = DepthType.Default
)

Parameters

guide
Type: Emgu.CVIInputArray
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.
src
Type: Emgu.CVIInputArray
filtering image with any numbers of channels.
dst
Type: Emgu.CVIOutputArray
output image.
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.
dDepth (Optional)
Type: Emgu.CV.CvEnumDepthType
optional depth of the output image.
See Also