MPPGestureRecognizerResult
@interface MPPGestureRecognizerResult : MPPTaskResultRepresents the gesture recognition results generated by GestureRecognizer.
- 
                  
                  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;
- 
                  
                  Recognized hand gestures of detected hands. Note that the index of the gesture is always -1, because the raw indices from multiple gesture classifiers cannot consolidate to a meaningful index. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPCategory *> *> *_Nonnull gestures;
- 
                  
                  Initializes a new GestureRecognizerResultwith the given landmarks, world landmarks, handedness, gestures and timestamp (in milliseconds).DeclarationObjective-C - (nonnull instancetype) initWithGestures: (nonnull NSArray<NSArray<MPPCategory *> *> *)gestures handedness: (nonnull NSArray<NSArray<MPPCategory *> *> *)handedness landmarks: (nonnull NSArray<NSArray<MPPNormalizedLandmark *> *> *) landmarks worldLandmarks: (nonnull NSArray<NSArray<MPPLandmark *> *> *)worldLandmarks timestampInMilliseconds:(NSInteger)timestampInMilliseconds;ParameterslandmarksThe hand landmarks of detected hands. worldLandmarksThe hand landmarks in world coordinates of detected hands. handednessThe recognized hand gestures of detected hands. handednessThe recognized hand gestures of detected hands. timestampInMillisecondsThe timestamp for this result. Return ValueAn instance of GestureRecognizerResultinitialized with the given landmarks, world landmarks, handedness and gestures.