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
visibility number The likelihood of the landmark being visible within the image.
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.visibility

The likelihood of the landmark being visible within the image.

Signature:

visibility: number;

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;