You are here: Start » AVL.NET » Invoke.SmoothImage_Gauss

Invoke.SmoothImage_Gauss

Smooths an image using a gaussian kernel.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void SmoothImage_Gauss
(
	Avl.Image inImage,
	Optional<Avl.Region> inRoi,
	float inStdDevX,
	Optional<float> inStdDevY,
	float inKernelRelativeSize,
	Avl.Image outImage,
	Diagnostic<int> diagKernelRadiusX,
	Diagnostic<int> diagKernelRadiusY
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inRoiAtl.Optional<Avl.Region>Range of output pixels to be computed. Default value: atl::NIL.
inStdDevXfloat<0.0f, INF>1.0fHorizontal smoothing standard deviation. Default value: 1.0f.
inStdDevYAtl.Optional<float><0.0f, INF>Vertical smoothing standard deviation. Default value: atl::NIL.
inKernelRelativeSizefloat<0.0f, 3.0f>2.0fA multiple of the standard deviation determining the size of the kernel. Default value: 2.0f.
outImageAvl.ImageOutput image.
diagKernelRadiusXAvl.Diagnostic<int>Horizontal radius of Gaussian kernel being used.
diagKernelRadiusYAvl.Diagnostic<int>Vertical radius of Gaussian kernel being used.

See also