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)
Syntaxpublic static void AnisotropicDiffusion(
IInputArray src,
IOutputArray dst,
float alpha,
float K,
int niters
)
Public Shared Sub AnisotropicDiffusion (
src As IInputArray,
dst As IOutputArray,
alpha As Single,
K As Single,
niters As Integer
)
public:
static void AnisotropicDiffusion(
IInputArray^ src,
IOutputArray^ dst,
float alpha,
float K,
int niters
)
static member AnisotropicDiffusion :
src : IInputArray *
dst : IOutputArray *
alpha : float32 *
K : float32 *
niters : int -> unit
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