You are here: Start » AVL.NET » Function Reference » Image » Image Tiling » AVL.CutImageIntoTiles

AVL.CutImageIntoTiles

Generates an array of small images by cutting the input image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CutImageIntoTiles
(
	AvlNet.Image inImage,
	int inTileWidth,
	AvlNet.OverflowControl inOverflowControl,
	IList<AvlNet.Image> outImageTiles
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageImage to be cut into tiles.
inTileWidthint<1, INF>1Demanded tile width. Default value: 1.
inOverflowControlAvlNet.OverflowControlDefine what to do when overflowing tiles are present.
outImageTilesSystem.Collections.Generic.IList<AvlNet.Image>Resulting image tiles.

Description

Generates an array of image tiles, which are cut from inImage.

Examples

CutImageIntoTiles performed on the sample image with inOverflowControl = false.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Function Overrides

See also