MediaPipeTasksVision Framework Reference

GestureRecognizerResult

class GestureRecognizerResult : TaskResult

Represents the gesture recognition results generated by GestureRecognizer.

  • Hand landmarks of detected hands.

    Declaration

    Swift

    var landmarks: [[NormalizedLandmark]] { get }
  • Hand landmarks in world coordniates of detected hands.

    Declaration

    Swift

    var worldLandmarks: [[Landmark]] { get }
  • Handedness of detected hands.

    Declaration

    Swift

    var handedness: [[ResultCategory]] { get }
  • 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.

    Declaration

    Swift

    var gestures: [[ResultCategory]] { get }
  • Initializes a new GestureRecognizerResult with the given landmarks, world landmarks, handedness, gestures and timestamp (in milliseconds).

    Declaration

    Swift

    init(gestures: [[ResultCategory]], handedness: [[ResultCategory]], landmarks: [[NormalizedLandmark]], worldLandmarks: [[Landmark]], timestampInMilliseconds: Int)

    Parameters

    landmarks

    The hand landmarks of detected hands.

    worldLandmarks

    The hand landmarks in world coordniates of detected hands.

    handedness

    The recognized hand gestures of detected hands.

    handedness

    The recognized hand gestures of detected hands.

    timestampInMilliseconds

    The timestamp for this result.

    Return Value

    An instance of GestureRecognizerResult initialized with the given landmarks, world landmarks, handedness and gestures.