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

AVL.CreateImageInversePolarTransformMap

Creates a spatial map representing an image inverse polar transform.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateImageInversePolarTransformMap
(
	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 from polar or log-polar space to euclidean 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 ImageInversePolarTransform. For more information see ImageInversePolarTransform.

Function Overrides

See also