You are here: Start » AVL.NET » Function Reference » Image » Image Pixel Statistics » AVL.ImageMinimum

AVL.ImageMinimum

Finds the location and the value of the darkest pixel.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ImageMinimum
(
	AvlNet.Image inImage,
	NullableValue<AvlNet.Location> outMinimumLocation,
	NullableValue<float> outMinimumValue
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
outMinimumLocationAvlNet.NullableValue<AvlNet.Location> Can be null to skip this parameter calculation.
outMinimumValueAvlNet.NullableValue<float> Can be null to skip this parameter calculation.

Examples

ImageMinimum used to detect the darkest 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 ImageMinimum.
DomainError Region exceeds an input image in ImageMinimum.

Function Overrides

See also