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

AVL.SetImageColumn

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SetImageColumn
(
	AvlNet.Image ioImage,
	int? inChannelIndex,
	int inColumnIndex,
	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.
inColumnIndexint<0, 65535>Selects a column of the input image.
inValuesSystem.Collections.Generic.IList<float>New values for specified column.

Errors

List of possible exceptions:

Error type Description
DomainError Channel index out of range in SetImageColumn.
DomainError Column index out of range in SetImageColumn.
DomainError Size of inValues array and image height are not equal in SetImageColumn.

Function Overrides

See also