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 | |
|---|---|---|---|---|
![]() |
inImage | Image | Input image | |
![]() |
inCenter | Point2D | Point2D(0, 0) | Center of the coordinate system in output image |
![]() |
inInputSpaceType | PolarSpaceType | PolarSpaceType.Polar | Method of transformation |
![]() |
inInterpolation | PolarInterpolationMethod | PolarInterpolationMethod.Linear | Method of underlying interpolation |
![]() |
outImage | Image | Output image |


