You are here: Start » FIL.NET » Function Reference » Image » Image Pixel Statistics » FIL.ImageStatistics

FIL.ImageStatistics

Computes various statistics of the image pixel values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void ImageStatistics
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	NullableValue<FilNet.Location> outMinimumLocation,
	NullableValue<float> outMinimumValue,
	NullableValue<FilNet.Location> outMaximumLocation,
	NullableValue<float> outMaximumValue,
	NullableValue<FilNet.Pixel> outAverageColor,
	NullableValue<float> outAverageValue,
	NullableValue<FilNet.Pixel> outSumColor,
	NullableValue<float> outSumValue
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Range of pixels to be processed. Default value: ftl::NIL.
outMinimumLocationFilNet.NullableValue<FilNet.Location> Can be null to skip this parameter calculation.
outMinimumValueFilNet.NullableValue<float> Can be null to skip this parameter calculation.
outMaximumLocationFilNet.NullableValue<FilNet.Location> Can be null to skip this parameter calculation.
outMaximumValueFilNet.NullableValue<float> Can be null to skip this parameter calculation.
outAverageColorFilNet.NullableValue<FilNet.Pixel> Can be null to skip this parameter calculation.
outAverageValueFilNet.NullableValue<float> Can be null to skip this parameter calculation.
outSumColorFilNet.NullableValue<FilNet.Pixel> Can be null to skip this parameter calculation.
outSumValueFilNet.NullableValue<float> Can be null to skip this parameter calculation.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Errors

List of possible exceptions:

Error type Description
DomainError Region exceeds an input image in ImageStatistics.

Function Overrides

See also