Click or drag to resize

CvXImgProcAMFilter Method

Simple one-line Adaptive Manifold Filter call.

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void AMFilter(
	InputArray joint,
	InputArray src,
	OutputArray dst,
	double sigmaS,
	double sigmaR,
	bool adjustOutliers = false
)

Parameters

joint
Type: OpenCvSharpInputArray
joint (also called as guided) image or array of images with any numbers of channels.
src
Type: OpenCvSharpInputArray
filtering image with any numbers of channels.
dst
Type: OpenCvSharpOutputArray
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