You are here: Start » AVL.NET » Function Reference » Image » Image Spatial Transforms » AVL.CreateImagePyramid

AVL.CreateImagePyramid

Creates an array of images, each downsampled from the previous one.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateImagePyramid
(
	AvlNet.Image inImage,
	int inMinPyramidLevel,
	int inMaxPyramidLevel,
	AvlNet.DownsampleFunction inFunction,
	IList<AvlNet.Image> outImagePyramid
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inMinPyramidLevelint<0, 12>
inMaxPyramidLevelint<0, 12>
inFunctionAvlNet.DownsampleFunctionMeanDefault value: Mean.
outImagePyramidSystem.Collections.Generic.IList<AvlNet.Image>

Hardware Acceleration

This operation is optimized for SSE2 technology for pixels of type: 1xUINT8.

This operation is optimized for SSSE3 technology for pixels of type: 3xUINT8.

Hardware acceleration settings may be manipulated with Settings class.

See also