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

Invoke.GetImageRow

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

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void GetImageRow
(
	Avl.Image inImage,
	Optional<int> inChannelIndex,
	int inRowIndex,
	List<float> outValues,
	List<Avl.Pixel> outPixels
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inChannelIndexAtl.Optional<int><0, 3>Selects a channel of the input image. Default value: atl::NIL.
inRowIndexint<0, 65535>Selects a row of the input image.
outValuesSystem.Collections.Generic.List<float>Output pixel values of the row.
outPixelsSystem.Collections.Generic.List<Avl.Pixel>Output pixels of the row.

See also