Landmark interface

Landmark represents a point in 3D space with x, y, z coordinates. The landmark coordinates are in meters. z represents the landmark depth, and the smaller the value the closer the world landmark is to the camera.

Signature:

export declare interface Landmark 

Properties

Property Type Description
x number The x coordinates of the landmark.
y number The y coordinates of the landmark.
z number The z coordinates of the landmark.

Landmark.x

The x coordinates of the landmark.

Signature:

x: number;

Landmark.y

The y coordinates of the landmark.

Signature:

y: number;

Landmark.z

The z coordinates of the landmark.

Signature:

z: number;