You are here: Start » AVL.NET » AVL.SetImageRow Method

AVL.SetImageRow Method

Sets pixel values in a single entire row of an image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void SetImageRow(
	ref AvlNet.Image ioImage,
	int? inChannelIndex,
	int inRowIndex,
	float[] inValues
)

Parameters

Name Type Range Default Description
ioImageAvlNet.Image
inChannelIndexint?<0, 3>Selects a channel of the input image. Default value: atl::NIL, or null.
inRowIndexint<0, 65535>Selects a row of the input image.
inValuesfloatNew values for specified row.

Errors

Error type Description
DomainError Channel index out of range in SetImageRow.
DomainError Row index out of range in SetImageRow.
DomainError Size of inValues array and image width are not equal in SetImageRow.

See also