SetImageColumn
Sets pixel values in a single entire column of an image.
Applications:Allows for creating images from calculated real values. It is significantly slower than SetImageRow.
Syntax
C++
Python
def SetImageColumn( ioImage: Image, inColumnIndex: int, inValues: list[float], /, *, inChannelIndex: int | None = None ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
ioImage | 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 | |
![]() |
inValues | list[float] | New values for specified column |


