You are here: Start » FIL.NET » Function Reference » Image » Image Local Transforms » FIL.StandardDeviationImage

FIL.StandardDeviationImage

Creates image of pixels' local standard deviations.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void StandardDeviationImage
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	NullableRef<FilNet.Region> inSourceRoi,
	int inKernelRadius,
	FilNet.Image outStdDevImage
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Region of Interest. Default value: ftl::NIL.
inSourceRoiFilNet.NullableRef<FilNet.Region>Range of inImage pixels to be read. Default value: ftl::NIL.
inKernelRadiusint<1, 40>4Radius of square kernel (width and height are 2r+1). Default value: 4.
outStdDevImageFilNet.ImageResulting image.

Examples

Input image

Output image (with additional postprocessing: normalization)

Errors

List of possible exceptions:

Error type Description
DomainError Region exceeds an input image in StandardDeviationImage.
DomainError Not supported inImage pixel format in StandardDeviationImage. Supported formats: UInt8, Int8, UInt16, Int16, Real.

Function Overrides

See also