Click or drag to resize

XImgprocInvokeL0Smooth Method

http://www.emgu.com
Global image smoothing via L0 gradient minimization.

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 L0Smooth(
	IInputArray src,
	IOutputArray dst,
	double lambda = 0.02,
	double kappa = 2
)

Parameters

src
Type: Emgu.CVIInputArray
Source image for filtering with unsigned 8-bit or signed 16-bit or floating-point depth.
dst
Type: Emgu.CVIOutputArray
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