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
jointInputArrayjoint (also called as guided) image or array of images with any numbers of channels.
srcInputArrayfiltering image with any numbers of channels.
dstOutputArrayoutput image.
sigmaSdoublespatial standard deviation.
sigmaRdoublecolor space standard deviation, it is similar to the sigma in the color space into bilateralFilter.
adjustOutliersbooloptional, specify perform outliers adjust operation or not, (Eq. 9) in the original paper.