Click or drag to resize

XImgprocInvokeDtFilter Method

http://www.emgu.com
Simple one-line Domain Transform 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 DtFilter(
	IInputArray guide,
	IInputArray src,
	IOutputArray dst,
	double sigmaSpatial,
	double sigmaColor,
	DtFilterType mode,
	int numIters = 3
)

Parameters

guide
Type: Emgu.CVIInputArray
guided image (also called as joint image) with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels.
src
Type: Emgu.CVIInputArray
filtering image with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels.
dst
Type: Emgu.CVIOutputArray
output image
sigmaSpatial
Type: SystemDouble
parameter in the original article, it's similar to the sigma in the coordinate space into bilateralFilter.
sigmaColor
Type: SystemDouble
parameter in the original article, it's similar to the sigma in the color space into bilateralFilter.
mode
Type: Emgu.CV.XImgprocDtFilterType
Dt filter mode
numIters (Optional)
Type: SystemInt32
optional number of iterations used for filtering, 3 is quite enough.
See Also