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

AVL.CreateImagePolarTransformMap

Creates a spatial map representing an image polar transform.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateImagePolarTransformMap
(
	AvlNet.ImageFormat inImageFormat,
	AvlNet.Point2D inCenter,
	AvlNet.PolarSpaceType inSpaceType,
	AvlNet.InterpolationMethod inInterpolationMethod,
	AvlNet.SpatialMap outPolarMap
)

Parameters

Name Type Range Default Description
inImageFormatAvlNet.ImageFormatInformation about dimensions, depth and pixel type of the image.
inCenterAvlNet.Point2D
inSpaceTypeAvlNet.PolarSpaceTypeMethod of transformation.
inInterpolationMethodAvlNet.InterpolationMethodBilinearInterpolation method used in extraction of image pixel values. Default value: Bilinear.
outPolarMapAvlNet.SpatialMapOutput spatial map.

Description

The operation generates map that describes image transformation to polar or log-polar space. Two modes of pixel interpolation are available, the bilinear filtering being more precise and computationally expensive. Usually creating map and then using RemapImage is faster than ImagePolarTransform. For more information see ImagePolarTransform.

Function Overrides

See also