GetImageColumn
Extracts an array of pixel values from a single column of an image.
Syntax
C++
Python
def GetImageColumn( inImage: Image, inColumnIndex: int, /, *, inChannelIndex: int | None = None ) -> ( outValues: list[float], outPixels: list[Pixel] )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inChannelIndex | int | None | 0 - 3 | None | Selects a channel of the input image |
![]() |
inColumnIndex | int | 0 - 65535 | Selects a column of the input image | |
![]() |
outValues | list[float] | Output pixel values of the column | ||
![]() |
outPixels | list[Pixel] | Output pixels of the column |


