HandLandmarkerResult
class HandLandmarkerResult : TaskResultRepresents the hand landmarker results generated by HandLandmarker.
- 
                  
                  Hand landmarks of detected hands. DeclarationSwift var landmarks: [[NormalizedLandmark]] { get }
- 
                  
                  Hand landmarks in world coordinates of detected hands. DeclarationSwift var worldLandmarks: [[Landmark]] { get }
- 
                  
                  Handedness of detected hands. DeclarationSwift var handedness: [[ResultCategory]] { get }
- 
                  
                  Initializes a new HandLandmarkerResultwith the given landmarks, world landmarks, handedness and timestamp (in milliseconds).DeclarationSwift init(landmarks: [[NormalizedLandmark]], worldLandmarks: [[Landmark]], handedness: [[ResultCategory]], timestampInMilliseconds: Int)ParameterslandmarksThe hand landmarks of detected hands. worldLandmarksThe hand landmarks in world coordinates of detected hands. handednessThe handedness of detected hands. timestampInMillisecondsThe timestamp for this result. Return ValueAn instance of HandLandmarkerResultinitialized with the given landmarks, world landmarks, handedness and timestamp (in milliseconds).