Click or drag to resize

XImgprocInvokeAnisotropicDiffusion Method

http://www.emgu.com
Performs anisotropic diffusion on an image.

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 AnisotropicDiffusion(
	IInputArray src,
	IOutputArray dst,
	float alpha,
	float K,
	int niters
)

Parameters

src
Type: Emgu.CVIInputArray
Grayscale Source image.
dst
Type: Emgu.CVIOutputArray
Destination image of the same size and the same number of channels as src .
alpha
Type: SystemSingle
The amount of time to step forward by on each iteration (normally, it's between 0 and 1).
K
Type: SystemSingle
sensitivity to the edges
niters
Type: SystemInt32
The number of iterations
See Also