You are here: Start » AVL.NET » Function Reference » Image » Image Combinators » AVL.NthImage_OfArray

AVL.NthImage_OfArray

For each pixel location, get value of n-th (increasing) pixel among input images.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void NthImage_OfArray
(
	IList<AvlNet.Image> inImages,
	NullableRef<IList<AvlNet.Region>> inSourceRois,
	int inN,
	bool inReverse,
	AvlNet.Image outImage
)

Parameters

Name Type Range Default Description
inImagesSystem.Collections.Generic.IList<AvlNet.Image>
inSourceRoisAvlNet.NullableRef<System.Collections.Generic.IList<AvlNet.Region>>
inNint
inReverseboolFalseReverse the ordering of pixel values to decreasing. Default value: False.
outImageAvlNet.ImageOutput 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.

Function Overrides

See also