EZMap8::ImageToZMap

Converts a 2D image (sub)pixel coordinate to the EZMap8 space.
(u,v) is the pixel position (with its origin in the upper left corner of the image).
(x,y) is the corresponding ZMap position (which has the same scale as the world space).
All values are expressed in floating point numbers.

Namespace: Euresys::Open_eVision::Easy3D

[C++]

void ImageToZMap(
   float u,
   float v,
   float& x,
   float& y
)

Parameters

u

X Coordinate of the pixel as a floating point value.

v

Y Coordinate of the pixel as a floating point value.

x

Position along horizontal axis in the ZMap space.

y

Position along vertical axis in the ZMap space.

EZMap8.ImageToZMap

Converts a 2D image (sub)pixel coordinate to the EZMap8 space.
(u,v) is the pixel position (with its origin in the upper left corner of the image).
(x,y) is the corresponding ZMap position (which has the same scale as the world space).
All values are expressed in floating point numbers.

Namespace: Euresys.Open_eVision.Easy3D

[C#]

void ImageToZMap(
   float u,
   float v,
   ref float x,
   ref float y
)

Parameters

u

X Coordinate of the pixel as a floating point value.

v

Y Coordinate of the pixel as a floating point value.

x

Position along horizontal axis in the ZMap space.

y

Position along vertical axis in the ZMap space.