MPPHandLandmarkerResult
@interface MPPHandLandmarkerResult : MPPTaskResultRepresents the hand landmarker results generated by HandLandmarker.
- 
                  
                  Hand landmarks of detected hands. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPNormalizedLandmark *> *> *_Nonnull landmarks;
- 
                  
                  Hand landmarks in world coordinates of detected hands. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPLandmark *> *> *_Nonnull worldLandmarks;
- 
                  
                  Handedness of detected hands. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPCategory *> *> *_Nonnull handedness;
- 
                  
                  Initializes a new HandLandmarkerResultwith the given landmarks, world landmarks, handedness and timestamp (in milliseconds).DeclarationObjective-C - (nonnull instancetype) initWithLandmarks: (nonnull NSArray<NSArray<MPPNormalizedLandmark *> *> *)landmarks worldLandmarks: (nonnull NSArray<NSArray<MPPLandmark *> *> *)worldLandmarks handedness: (nonnull NSArray<NSArray<MPPCategory *> *> *)handedness timestampInMilliseconds:(NSInteger)timestampInMilliseconds;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).