Back to Aurora Vision Library website

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

CreateImageInversePolarTransformMap


Header: AVL.h
Namespace: avl
Module: Calibration

Creates a spatial map representing an image inverse polar transform.

Applications: Data preprocessing for fast inverse polar transform. The result is used by RemapImage.

Syntax

C++
C#
 
void avl::CreateImageInversePolarTransformMap
(
	const avl::ImageFormat& inImageFormat,
	const avl::Point2D& inCenter,
	avl::PolarSpaceType::Type inSpaceType,
	avl::InterpolationMethod::Type inInterpolationMethod,
	avl::SpatialMap& outPolarMap,
	atl::Optional<avl::Region&> outOutputRegion = atl::NIL
)

Parameters

Name Type Default Description
Input value inImageFormat const ImageFormat& Information about dimensions, depth and pixel type of the image
Input value inCenter const Point2D&
Input value inSpaceType PolarSpaceType::Type Method of transformation
Input value inInterpolationMethod InterpolationMethod::Type Bilinear Interpolation method used in extraction of image pixel values
Output value outPolarMap SpatialMap& Output spatial map
Output value outOutputRegion Optional<Region&> NIL Pixels set by the spatial map application

Optional Outputs

The computation of following outputs can be switched off by passing value atl::NIL to these parameters: outOutputRegion.

Read more about Optional Outputs.

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.

See Also

  • RemapImage – Applies a precomputed image transform, defined by a spatial map object.