Table of Contents

Method AMFilter

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

AMFilter(InputArray, InputArray, OutputArray, double, double, bool)

Simple one-line Adaptive Manifold Filter call.

public static void AMFilter(InputArray joint, InputArray src, OutputArray dst, double sigmaS, double sigmaR, bool adjustOutliers = false)

Parameters

joint InputArray

joint (also called as guided) image or array of images with any numbers of channels.

src InputArray

filtering image with any numbers of channels.

dst OutputArray

output image.

sigmaS double

spatial standard deviation.

sigmaR double

color space standard deviation, it is similar to the sigma in the color space into bilateralFilter.

adjustOutliers bool

optional, specify perform outliers adjust operation or not, (Eq. 9) in the original paper.