HolisticLandmarkerResult interface

Represents the holistic landmarks detection results generated by HolisticLandmarker.

Signature:

export declare interface HolisticLandmarkerResult 

Properties

Property Type Description
faceBlendshapes Classifications[] Optional face blendshapes results.
faceLandmarks NormalizedLandmark[][] Detected face landmarks in normalized image coordinates.
leftHandLandmarks NormalizedLandmark[][] Left hand landmarks of detected left hands.
leftHandWorldLandmarks Landmark[][] Left hand landmarks in world coordinates of detected left hands.
poseLandmarks NormalizedLandmark[][] Detected pose landmarks in normalized image coordinates.
poseSegmentationMasks MPMask[] Optional segmentation mask for the detected pose.
poseWorldLandmarks Landmark[][] Pose landmarks in world coordinates of detected poses.
rightHandLandmarks NormalizedLandmark[][] Right hand landmarks of detected right hands.
rightHandWorldLandmarks Landmark[][] Right hand landmarks in world coordinates of detected right hands.

HolisticLandmarkerResult.faceBlendshapes

Optional face blendshapes results.

Signature:

faceBlendshapes: Classifications[];

HolisticLandmarkerResult.faceLandmarks

Detected face landmarks in normalized image coordinates.

Signature:

faceLandmarks: NormalizedLandmark[][];

HolisticLandmarkerResult.leftHandLandmarks

Left hand landmarks of detected left hands.

Signature:

leftHandLandmarks: NormalizedLandmark[][];

HolisticLandmarkerResult.leftHandWorldLandmarks

Left hand landmarks in world coordinates of detected left hands.

Signature:

leftHandWorldLandmarks: Landmark[][];

HolisticLandmarkerResult.poseLandmarks

Detected pose landmarks in normalized image coordinates.

Signature:

poseLandmarks: NormalizedLandmark[][];

HolisticLandmarkerResult.poseSegmentationMasks

Optional segmentation mask for the detected pose.

Signature:

poseSegmentationMasks: MPMask[];

HolisticLandmarkerResult.poseWorldLandmarks

Pose landmarks in world coordinates of detected poses.

Signature:

poseWorldLandmarks: Landmark[][];

HolisticLandmarkerResult.rightHandLandmarks

Right hand landmarks of detected right hands.

Signature:

rightHandLandmarks: NormalizedLandmark[][];

HolisticLandmarkerResult.rightHandWorldLandmarks

Right hand landmarks in world coordinates of detected right hands.

Signature:

rightHandWorldLandmarks: Landmark[][];