Skip to content

polar_trans_image_extPolarTransImageExtPolarTransImageExtpolar_trans_image_extpolar_trans_image_ext🔗

Short description🔗

polar_trans_image_extPolarTransImageExtPolarTransImageExtpolar_trans_image_extpolar_trans_image_ext — Transform an annular arc in an image to polar coordinates.

Signature🔗

polar_trans_image_ext( image Image, out image PolarTransImage, number Row, number Column, angle.rad AngleStart, angle.rad AngleEnd, number RadiusStart, number RadiusEnd, extent.x Width, extent.y Height, string Interpolation )void PolarTransImageExt( const HObject& Image, HObject* PolarTransImage, const HTuple& Row, const HTuple& Column, const HTuple& AngleStart, const HTuple& AngleEnd, const HTuple& RadiusStart, const HTuple& RadiusEnd, const HTuple& Width, const HTuple& Height, const HTuple& Interpolation )static void HOperatorSet.PolarTransImageExt( HObject image, out HObject polarTransImage, HTuple row, HTuple column, HTuple angleStart, HTuple angleEnd, HTuple radiusStart, HTuple radiusEnd, HTuple width, HTuple height, HTuple interpolation )def polar_trans_image_ext( image: HObject, row: Union[int, float], column: Union[int, float], angle_start: float, angle_end: float, radius_start: Union[int, float], radius_end: Union[int, float], width: int, height: int, interpolation: str ) -> HObject

Herror polar_trans_image_ext( const Hobject Image, Hobject* PolarTransImage, double Row, double Column, double AngleStart, double AngleEnd, double RadiusStart, double RadiusEnd, const Hlong Width, const Hlong Height, const char* Interpolation )

Herror T_polar_trans_image_ext( const Hobject Image, Hobject* PolarTransImage, const Htuple Row, const Htuple Column, const Htuple AngleStart, const Htuple AngleEnd, const Htuple RadiusStart, const Htuple RadiusEnd, const Htuple Width, const Htuple Height, const Htuple Interpolation )

HImage HImage::PolarTransImageExt( const HTuple& Row, const HTuple& Column, double AngleStart, double AngleEnd, const HTuple& RadiusStart, const HTuple& RadiusEnd, Hlong Width, Hlong Height, const HString& Interpolation ) const

HImage HImage::PolarTransImageExt( double Row, double Column, double AngleStart, double AngleEnd, double RadiusStart, double RadiusEnd, Hlong Width, Hlong Height, const HString& Interpolation ) const

HImage HImage::PolarTransImageExt( double Row, double Column, double AngleStart, double AngleEnd, double RadiusStart, double RadiusEnd, Hlong Width, Hlong Height, const char* Interpolation ) const

HImage HImage::PolarTransImageExt( double Row, double Column, double AngleStart, double AngleEnd, double RadiusStart, double RadiusEnd, Hlong Width, Hlong Height, const wchar_t* Interpolation ) const (Windows only)

HImage HImage.PolarTransImageExt( HTuple row, HTuple column, double angleStart, double angleEnd, HTuple radiusStart, HTuple radiusEnd, int width, int height, string interpolation )

HImage HImage.PolarTransImageExt( double row, double column, double angleStart, double angleEnd, double radiusStart, double radiusEnd, int width, int height, string interpolation )

Description🔗

polar_trans_image_extPolarTransImageExt transforms the annular arc specified by the center point (Rowrowrow, Columncolumncolumn), the radii RadiusStartradiusStartradius_start and RadiusEndradiusEndradius_end and the angles AngleStartangleStartangle_start and AngleEndangleEndangle_end in the image Imageimageimage to its polar coordinate version in the image PolarTransImagepolarTransImagepolar_trans_image of the dimensions Widthwidthwidth x Heightheightheight.

The upper left pixel in the output image always corresponds to the point in the input image that is specified by RadiusStartradiusStartradius_start and AngleStartangleStartangle_start. Analogously, the lower right pixel in the output image always corresponds to the point in the input image that is specified by RadiusEndradiusEndradius_end and AngleEndangleEndangle_end. In the usual mode (AngleStartangleStartangle_start \(<\) AngleEndangleEndangle_end and RadiusStartradiusStartradius_start \(<\) RadiusEndradiusEndradius_end), the polar transformation is performed in the mathematically positive orientation (counterclockwise). Furthermore, points with smaller radii lie in the upper part of the output image. By suitably exchanging the values of these parameters (e.g., AngleStartangleStartangle_start \(>\) AngleEndangleEndangle_end or RadiusStartradiusStartradius_start \(>\) RadiusEndradiusEndradius_end), any desired orientation of the output image can be achieved.

The parameter Interpolationinterpolationinterpolation is used to select the interpolation method 'bilinear'"bilinear" or 'nearest_neighbor'"nearest_neighbor". With 'nearest_neighbor'"nearest_neighbor", the gray value of a pixel in the output image is determined by the gray value of the closest pixel in the input image. With 'bilinear'"bilinear", the gray value of a pixel in the output image is determined by bilinear interpolation of the gray values of the four closest pixels in the input image. The mode 'bilinear'"bilinear" results in images of better quality, but is slower than the mode 'nearest_neighbor'"nearest_neighbor".

The angles can be chosen from all real numbers. Center point and radii can be real as well. However, if they are both integers and the difference of RadiusEndradiusEndradius_end and RadiusStartradiusStartradius_start equals the height Heightheightheight of the destination image, calculation will be sped up through an optimized routine.

The radii and angles are inclusive, which means that the first row of the target image contains the circle with radius RadiusStartradiusStartradius_start and the last row contains the circle with radius RadiusEndradiusEndradius_end. For complete circles, where the difference between AngleStartangleStartangle_start and AngleEndangleEndangle_end equals \(2 \pi\) (360 degrees), this also means that the first column of the target image will be the same as the last.

To avoid this, do not make this difference \(2 \pi\), but \(2 \pi (1 - \frac{1}{\textrm{Width}})\) degrees instead.

The call polar_trans_image(Image, PolarTransImage, Row, Column, Width, Height) produces the same result as the call polar_trans_image_ext(Image, PolarTransImage, Row-0.5, Column-0.5, 6.2831853, 6.2831853/Width, 0, Height-1, Width, Height, 'nearest_neighbor').

The offset of 0.5 is necessary since polar_trans_imagePolarTransImage does not do exact nearest neighbor interpolation and the radii and angles can be calculated using the information in the above paragraph and knowing that polar_trans_imagePolarTransImage does not handle its arguments inclusively. The start angle is bigger than the end angle to make polar_trans_image_extPolarTransImageExt go clockwise, just like polar_trans_imagePolarTransImage does.

polar_trans_image_extPolarTransImageExt can be executed on an OpenCL device if the input image does not exceed the maximum size of image objects of the selected device. Due to numerical reasons, there can be slight differences in the output compared to the execution on the CPU.

Additionally, for images of type byte, int2 or uint2 the system parameter 'int_zooming'"int_zooming" selects between fast calculation in fixed point arithmetics ('int_zooming'"int_zooming" = 'true'"true") and highly accurate calculation in floating point arithmetics ('int_zooming'"int_zooming" = 'false'"false"). Fixed point calculation can lead to minor gray value deviations and pixels with undefined gray values.

Further Information🔗

For an explanation of the different 2D coordinate systems used in HALCON, see the introduction of chapter Transformations / 2D Transformations.

Attention🔗

For speed reasons, the domain of the input image is ignored. The output image always has a complete rectangle as its domain.

Execution information🔗

Execution information
  • Supports OpenCL compute devices.

  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Automatically parallelized on tuple level.

  • Automatically parallelized on channel level.

  • Automatically parallelized on internal data level.

Parameters🔗

Imageimageimage (input_object) (multichannel-)image(-array) → object (byte* / int2* / uint2* / real*)HObject (byte* / int2* / uint2* / real*)HImage (byte* / int2* / uint2* / real*)HObject (byte* / int2* / uint2* / real*)Hobject (byte* / int2* / uint2* / real*) *allowed for compute devices

Input image.

PolarTransImagepolarTransImagepolar_trans_image (output_object) (multichannel-)image(-array) → object (byte / int2 / uint2 / real)HObject (byte / int2 / uint2 / real)HImage (byte / int2 / uint2 / real)HObject (byte / int2 / uint2 / real)Hobject * (byte / int2 / uint2 / real)

Output image.

Rowrowrow (input_control) number → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[int, float]Htuple (double / Hlong)

Row coordinate of the center of the arc.

Default: 256256
Suggested values: 0, 16, 32, 64, 128, 240, 256, 480, 5120, 16, 32, 64, 128, 240, 256, 480, 512

Columncolumncolumn (input_control) number → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[int, float]Htuple (double / Hlong)

Column coordinate of the center of the arc.

Default: 256256
Suggested values: 0, 16, 32, 64, 128, 256, 320, 512, 6400, 16, 32, 64, 128, 256, 320, 512, 640

AngleStartangleStartangle_start (input_control) angle.rad → (real)HTuple (double)HTuple (double)floatHtuple (double)

Angle of the ray to be mapped to the first column of the output image.

Default: 0.00.0
Suggested values: 0.0, 0.78539816, 1.57079632, 3.141592654, 6.2831853, 12.5663706160.0, 0.78539816, 1.57079632, 3.141592654, 6.2831853, 12.566370616

AngleEndangleEndangle_end (input_control) angle.rad → (real)HTuple (double)HTuple (double)floatHtuple (double)

Angle of the ray to be mapped to the last column of the output image.

Default: 6.28318536.2831853
Suggested values: 0.0, 0.78539816, 1.57079632, 3.141592654, 6.2831853, 12.5663706160.0, 0.78539816, 1.57079632, 3.141592654, 6.2831853, 12.566370616

RadiusStartradiusStartradius_start (input_control) number → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[int, float]Htuple (double / Hlong)

Radius of the circle to be mapped to the first row of the output image.

Default: 00
Suggested values: 0, 16, 32, 64, 100, 128, 256, 5120, 16, 32, 64, 100, 128, 256, 512
Value range: 0 ≤ RadiusStart

RadiusEndradiusEndradius_end (input_control) number → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)Union[int, float]Htuple (double / Hlong)

Radius of the circle to be mapped to the last row of the output image.

Default: 100100
Suggested values: 0, 16, 32, 64, 100, 128, 256, 5120, 16, 32, 64, 100, 128, 256, 512
Value range: 0 ≤ RadiusEnd

Widthwidthwidth (input_control) extent.x → (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Width of the output image.

Default: 512512
Suggested values: 256, 320, 512, 640, 800, 1024256, 320, 512, 640, 800, 1024
Value range: 0 ≤ Width ≤ 32767

Heightheightheight (input_control) extent.y → (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Height of the output image.

Default: 512512
Suggested values: 240, 256, 480, 512, 600, 1024240, 256, 480, 512, 600, 1024
Value range: 0 ≤ Height ≤ 32767

Interpolationinterpolationinterpolation (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

Interpolation method for the transformation.

Default: 'nearest_neighbor'"nearest_neighbor"
List of values: 'bilinear', 'nearest_neighbor'"bilinear", "nearest_neighbor"

Combinations with other operators🔗

Combinations

See also

polar_trans_image_invPolarTransImageInv, polar_trans_regionPolarTransRegion, polar_trans_region_invPolarTransRegionInv, polar_trans_contour_xldPolarTransContourXld, polar_trans_contour_xld_invPolarTransContourXldInv

Module🔗

Foundation