You are here: Start » AVL.NET » Function Reference » Image » Image Basics » AVL.SetImageRow

AVL.SetImageRow

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SetImageRow
(
	AvlNet.Image ioImage,
	int? inChannelIndex,
	int inRowIndex,
	IList<float> inValues
)

Parameters

Name Type Range Default Description
ioImageAvlNet.Image
inChannelIndexint?<0, 3>Selects a channel of the input image. Default value: atl::NIL.
inRowIndexint<0, 65535>Selects a row of the input image.
inValuesSystem.Collections.Generic.IList<float>New values for specified row.

Errors

List of possible exceptions:

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.

Function Overrides

See also