A landmark that can have 1 to 3 dimensions.
mp.tasks.components.containers.Landmark(
x: Optional[float] = None,
y: Optional[float] = None,
z: Optional[float] = None,
visibility: Optional[float] = None,
presence: Optional[float] = None
)
Use x for 1D points, (x, y) for 2D points and (x, y, z) for 3D points.
Attributes |
x
|
The x coordinate.
|
y
|
The y coordinate.
|
z
|
The z coordinate.
|
visibility
|
Landmark visibility. Should stay unset if not supported. Float
score of whether landmark is visible or occluded by other objects.
Landmark considered as invisible also if it is not present on the screen
(out of scene bounds). Depending on the model, visibility value is either
a sigmoid or an argument of sigmoid.
|
presence
|
Landmark presence. Should stay unset |