You are here: Start » FIL.NET » FIL.GetImageColumn
Extracts an array of pixel values from a single column of an image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void GetImageColumn ( FilNet.Image inImage, int? inChannelIndex, int inColumnIndex, IList<float> outValues, IList<FilNet.Pixel> outPixels )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inChannelIndex | int? | <0, 3> | Selects a channel of the input image. Default value: ftl::NIL. | |
![]() | inColumnIndex | int | <0, 65535> | Selects a column of the input image. | |
![]() | outValues | System.Collections.Generic.IList<float> | Output pixel values of the column. | ||
![]() | outPixels | System.Collections.Generic.IList<FilNet.Pixel> | Output pixels of the column. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Channel index out of range in GetImageColumn. |
DomainError | Column index out of range in GetImageColumn. |