NthImage_OfArray
For each pixel location, get value of n-th (increasing) pixel among input images.
Syntax
C++
Python
def NthImage_OfArray( inImages: list[Image], inN: int, inReverse: bool, outImage: Image, /, *, inSourceRois: list[Region] | None = None ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inImages | list[Image] | ||
![]() |
inSourceRois | list[Region] | None | None | |
![]() |
inN | int | ||
![]() |
inReverse | bool | Reverse the ordering of pixel values to decreasing. | |
![]() |
outImage | Image | Output image |


