You are here: Start » AVL.NET » AVL.PowerImage Method

AVL.PowerImage Method

Exponentiates each pixel to the given power.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void PowerImage(
	AvlNet.Image inImage,
	AvlNet.Region inRoi,
	float inValue,
	out AvlNet.Image outImage
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inRoiAvlNet.RegionRange of pixels to be processed. Default value: atl::NIL, or null.
inValuefloat2.0fThe exponent. Default value: 2.0f.
outImageAvlNet.ImageOutput image.

Remarks

When diagnostic mode is used, this filter will check correctness of input data and throw an exception if possibility of NaN value in output image occur. When working in optimized mode, this check is omitted.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

See also