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,
	NullableRef<AvlNet.Region> inRoi,
	out AvlNet.Location outMinimumLocation,
	out float outMinimumValue
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inRoiAvlNet.NullableRef<AvlNet.Region>Range of pixels to be processed. Default value: atl::NIL.
outMinimumLocationAvlNet.Location
outMinimumValuefloat

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