Back to Aurora Vision Library website

You are here: Start » Function Reference » Surface » Surface Basics » ImageCircleToSurfaceCoordinates

ImageCircleToSurfaceCoordinates


Header: AVL.h
Namespace: avl
Module: Vision3DStandard

Finds the surface coordinates of image circle.

Applications: Transformation of results found on the image associated with the surface to the surface coordinates.

Syntax

C++
C#
 
void avl::ImageCircleToSurfaceCoordinates
(
	const avl::Circle2D& inImageCircle,
	const avl::SurfaceCoordinatesFormat& inSurfaceCoordinatesFormat,
	avl::Circle2D& outSurfaceCircle,
	atl::Optional<avl::Circle3D&> outSurfaceCircle3D = atl::NIL
)

Parameters

Name Type Default Description
Input value inImageCircle const Circle2D&
Input value inSurfaceCoordinatesFormat const SurfaceCoordinatesFormat& Offsets and scales on X and Y axes of the surface associated with the image objects were found on
Output value outSurfaceCircle Circle2D&
Output value outSurfaceCircle3D Optional<Circle3D&> NIL

Optional Outputs

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

Read more about Optional Outputs.