EZMap8::ZMapToImage

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

Namespace: Euresys::Open_eVision::Easy3D

[C++]

bool ZMapToImage(
   float x,
   float y,
   float& u,
   float& v
)

Parameters

x

Position along horizontal axis in the ZMap space.

y

Position along vertical axis in the ZMap space.

u

Column of the pixel as a floating point value.

v

Row of the pixel as a floating point value.

EZMap8.ZMapToImage

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

Namespace: Euresys.Open_eVision.Easy3D

[C#]

bool ZMapToImage(
   float x,
   float y,
   ref float u,
   ref float v
)

Parameters

x

Position along horizontal axis in the ZMap space.

y

Position along vertical axis in the ZMap space.

u

Column of the pixel as a floating point value.

v

Row of the pixel as a floating point value.