You are here: Start » AVL.NET » AVL.SmoothImage_Gauss(AvlNet.Image, AvlNet.Region, float, float?, float, AvlNet.Image, int, int)
AVL.SmoothImage_Gauss(AvlNet.Image, AvlNet.Region, float, float?, float, AvlNet.Image, int, int)
Smooths an image using a gaussian kernel.
| Namespace: | AvlNet |
|---|---|
| Assembly: | AVL.NET.dll |
Syntax
public static void SmoothImage_Gauss( AvlNet.Image inImage, AvlNet.Region inRoi, float inStdDevX, float? inStdDevY, float inKernelRelativeSize, out AvlNet.Image outImage, out int diagKernelRadiusX, out int diagKernelRadiusY )
Parameters
- inImage
- Type: AvlNet.Image
Input image - inRoi
- Type: AvlNet.Region
Range of output pixels to be computed, or null. - inStdDevX
- Type: System.Single
Horizontal smoothing standard deviation - inStdDevY
- Type: System.Nullable<System.Single>
Vertical smoothing standard deviation, or null. - inKernelRelativeSize
- Type: System.Single
A multiple of the standard deviation determining the size of the kernel - outImage
- Type: AvlNet.Image
Output image - diagKernelRadiusX
- Type: System.Int32
Horizontal radius of Gaussian kernel being used - diagKernelRadiusY
- Type: System.Int32
Vertical radius of Gaussian kernel being used
Examples
![]() |
![]() |
SmoothImage_Gauss performed on a sample image with inStdDevX = 3.0.
Hardware Acceleration
This operation is optimized for SSE2 technology for pixels of types: UINT8, SINT16, REAL.
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.


