Back to Aurora Vision Library website

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

ImagePointToSurfaceCoordinates


Header: AVL.h
Namespace: avl
Module: Vision3DStandard

Finds the surface coordinates of image point.

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

Syntax

C++
C#
 
void avl::ImagePointToSurfaceCoordinates
(
	const avl::Point2D& inImagePoint,
	const avl::SurfaceCoordinatesFormat& inSurfaceCoordinatesFormat,
	avl::Point2D& outSurfacePoint,
	atl::Optional<avl::Point3D&> outSurfacePoint3D = atl::NIL
)

Parameters

Name Type Default Description
Input value inImagePoint const Point2D&
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 outSurfacePoint Point2D&
Output value outSurfacePoint3D Optional<Point3D&> NIL

Optional Outputs

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

Read more about Optional Outputs.