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

AVL.ImageAverageHSx

Computes the average of the HSV, HSL or HSI image pixel values.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ImageAverageHSx
(
	AvlNet.Image inRgbImage,
	AvlNet.HSxColorModel inColorModel,
	out int outHAverage,
	out int outSAverage,
	out int outBAverage
)

Parameters

Name Type Range Default Description
inRgbImageAvlNet.Image
inColorModelAvlNet.HSxColorModelSelected color model.
outHAverageintOutput hue average.
outSAverageintOutput saturation average.
outBAverageintOutput brightness average.

Description

The filter finds average values of the HSV, HSL or HSI color space image from the RGB image inRgbImage within specific region inRoi.

The calculations take into account only these pixels which have saturation a greater than inMinSaturation.

Filter returns average values of a hue, saturation and brightness.

Errors

List of possible exceptions:

Error type Description
DomainError Region exceeds an input image in ImageAverageHSx.
DomainError Not supported inRgbImage pixel format in ImageAverageHSx. Supported formats: 3xUInt8.

Function Overrides

See also