HandLandmarkerResult interface

Represents the hand landmarks deection results generated by HandLandmarker.

Signature:

export declare interface HandLandmarkerResult 

Properties

Property Type Description
handedness Category[][] Handedness of detected hands.
handednesses Category[][] Handedness of detected hands.
landmarks NormalizedLandmark[][] Hand landmarks of detected hands.
worldLandmarks Landmark[][] Hand landmarks in world coordinates of detected hands.

HandLandmarkerResult.handedness

Handedness of detected hands.

Signature:

handedness: Category[][];

HandLandmarkerResult.handednesses

Use .handedness instead.

Handedness of detected hands.

Signature:

handednesses: Category[][];

HandLandmarkerResult.landmarks

Hand landmarks of detected hands.

Signature:

landmarks: NormalizedLandmark[][];

HandLandmarkerResult.worldLandmarks

Hand landmarks in world coordinates of detected hands.

Signature:

worldLandmarks: Landmark[][];