ImageInversePolarTransform


Transforms an image from polar or log-polar space to euclidean space.

Syntax

C++
C#
Python
 
def ImageInversePolarTransform(
	inImage: Image,
	outImage: Image,
	/,
	*,
	inCenter: Point2D = Point2D(0, 0),
	inInputSpaceType: PolarSpaceType = PolarSpaceType.Polar,
	inInterpolation: PolarInterpolationMethod = PolarInterpolationMethod.Linear
)
-> None

Parameters

Name Type Default Description
Input value inImage Image Input image
Input value inCenter Point2D Point2D(0, 0) Center of the coordinate system in output image
Input value inInputSpaceType PolarSpaceType PolarSpaceType.Polar Method of transformation
Input value inInterpolation PolarInterpolationMethod PolarInterpolationMethod.Linear Method of underlying interpolation
Output value outImage Image Output image