Back to FabImage Library website
You are here: Start » Function Reference » Image » Image Basics » SetImageRow
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Sets pixel values in a single entire row of an image.
Applications: Allows for creating images from calculated real values.
Syntax
C++
C#
void fil::SetImageRow ( fil::Image& ioImage, ftl::Optional<int> inChannelIndex, const int inRowIndex, const ftl::Array<float>& inValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
ioImage | Image& | |||
![]() |
inChannelIndex | Optional<int> | 0 - 3 | NIL | Selects a channel of the input image |
![]() |
inRowIndex | const int | 0 - 65535 | Selects a row of the input image | |
![]() |
inValues | const Array<float>& | New values for specified row |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Channel index out of range in SetImageRow. |
DomainError | Row index out of range in SetImageRow. |
DomainError | Size of inValues array and image width are not equal in SetImageRow. |