You are here: Start » FIL.NET » Function Reference » Image » Image Combinators » FIL.NthImage_OfArray
For each pixel location, get value of n-th (increasing) pixel among input images.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void NthImage_OfArray ( IList<FilNet.Image> inImages, NullableRef<IList<FilNet.Region>> inSourceRois, int inN, bool inReverse, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImages | System.Collections.Generic.IList<FilNet.Image> | |||
![]() | inSourceRois | FilNet.NullableRef<System.Collections.Generic.IList<FilNet.Region>> | |||
![]() | inN | int | |||
![]() | inReverse | bool | False | Reverse the ordering of pixel values to decreasing. Default value: False. | |
![]() | outImage | FilNet.Image | Output image. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | ROI exceeds an input image in NthImage_OfArray. |
DomainError | Sizes of image array and ROI array differ in NthImage_OfArray. |
DomainError | The inN parameter cant be negative. |
DomainError | The inN parameter must be smaller than input image array size. |