Back to Adaptive Vision Library website

You are here: Start » Function Reference » Image Combinators » NthImage_OfArray

NthImage_OfArray


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

Header:AVL.h

Syntax

C++
C#
 
void avl::NthImage_OfArray
(
	const atl::Array<avl::Image>& inImages,
	const atl::Optional<const atl::Array<avl::Region>&>& inSourceRois,
	int inN,
	bool inReverse,
	avl::Image& outImage
)

Parameters

Name Type Default Description
inImages const Array<Image>&
inSourceRois const Optional<const Array<Region>&>& NIL
inN int
inReverse bool False Reverse the ordering of pixel values to decreasing.
outImage Image& Output image

Errors

Error type Description
DomainError The inN parameter must be smaller than input image array size.