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

FIL.CreateImagePyramid

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inMinPyramidLevelint<0, 12>
inMaxPyramidLevelint<0, 12>
inFunctionFilNet.DownsampleFunctionMeanDefault value: Mean.
outImagePyramidSystem.Collections.Generic.IList<FilNet.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