You are here: Start » FIL.NET » Function Reference » Image » Image Pixel Statistics » FIL.ImageMaximum
Finds the location and the value of the brightest pixel.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void ImageMaximum ( FilNet.Image inImage, NullableRef<FilNet.Region> inRoi, NullableValue<FilNet.Location> outMaximumLocation, NullableValue<float> outMaximumValue )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inRoi | FilNet.NullableRef<FilNet.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | outMaximumLocation | FilNet.NullableValue<FilNet.Location> | Can be null to skip this parameter calculation. | ||
![]() | outMaximumValue | FilNet.NullableValue<float> | Can be null to skip this parameter calculation. |
Examples

ImageMaximum used to detect the brightest point.
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 | Empty region on input in ImageMaximum. |
DomainError | Region exceeds an input image in ImageMaximum. |
Function Overrides
- ImageMaximum(Image, NullableValue<Location>, NullableValue<Single>)
- ImageMaximum(Image, NullableRef<Region>, Location, Single)