Click or drag to resize

XImgprocInvokeAmFilter Method

http://www.emgu.com
Simple one-line Adaptive Manifold 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 AmFilter(
	IInputArray joint,
	IInputArray src,
	IOutputArray dst,
	double sigmaS,
	double sigmaR,
	bool adjustOutliers = false
)

Parameters

joint
Type: Emgu.CVIInputArray
joint (also called as guided) image or array of images with any numbers of channels.
src
Type: Emgu.CVIInputArray
filtering image with any numbers of channels.
dst
Type: Emgu.CVIOutputArray
output image.
sigmaS
Type: SystemDouble
spatial standard deviation.
sigmaR
Type: SystemDouble
color space standard deviation, it is similar to the sigma in the color space into bilateralFilter.
adjustOutliers (Optional)
Type: SystemBoolean
optional, specify perform outliers adjust operation or not, (Eq. 9) in the original paper.
See Also