Click or drag to resize

CvXImgProcL0Smooth Method

Global image smoothing via L0 gradient minimization.

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void L0Smooth(
	InputArray src,
	OutputArray dst,
	double lambda = 0.02,
	double kappa = 2
)

Parameters

src
Type: OpenCvSharpInputArray
source image for filtering with unsigned 8-bit or signed 16-bit or floating-point depth.
dst
Type: OpenCvSharpOutputArray
destination image.
lambda (Optional)
Type: SystemDouble
parameter defining the smooth term weight.
kappa (Optional)
Type: SystemDouble
parameter defining the increasing factor of the weight of the gradient data term.
See Also