You are here: Start » AVL.NET » AVL.GetImageRow

AVL.GetImageRow

Extracts an array of pixel values from a single row of an image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GetImageRow
(
	AvlNet.Image inImage,
	int inRowIndex,
	out float[] outValues,
	out AvlNet.Pixel[] outPixels
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inRowIndexint<0, 65535>Selects a row of the input image.
outValuesfloat[]Output pixel values of the row.
outPixelsAvlNet.Pixel[]Output pixels of the row.

Errors

Error type Description
DomainError Channel index out of range in GetImageRow.
DomainError Row index out of range in GetImageRow.

See also