You are here: Start » AVL.NET » AVL.SetImageColumn(AvlNet.Image, int?, int, float[])
AVL.SetImageColumn(AvlNet.Image, int?, int, float[])
Sets pixel values in a single entire column of an image.
| Namespace: | AvlNet |
|---|---|
| Assembly: | AVL.NET.dll |
Syntax
public static void SetImageColumn( ref AvlNet.Image ioImage, int? inChannelIndex, int inColumnIndex, float[] inValues )
Parameters
- ioImage
- Type: AvlNet.Image
- inChannelIndex
- Type: System.Nullable<System.Int32>
Selects a channel of the input image, or null. - inColumnIndex
- Type: System.Int32
Selects a column of the input image - inValues
- Type: System.Single
New values for specified column
Errors
| 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. |
