MPPPoseLandmarkerResult
@interface MPPPoseLandmarkerResult : MPPTaskResultRepresents the pose landmarks deection results generated by PoseLandmarker.
- 
                  
                  Pose landmarks of detected poses. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPNormalizedLandmark *> *> *_Nonnull landmarks;
- 
                  
                  Pose landmarks in world coordinates of detected poses. DeclarationObjective-C @property (nonatomic, readonly) NSArray<NSArray<MPPLandmark *> *> *_Nonnull worldLandmarks;
- 
                  
                  Pose segmentation masks. DeclarationObjective-C @property (nonatomic, readonly) NSArray<MPPMask *> *_Nonnull segmentationMasks;
- 
                  
                  Initializes a new PoseLandmarkerResultwith the given array of landmarks, world landmarks, segmentation masks of the detected poses and timestamp (in milliseconds).DeclarationObjective-C - (nonnull instancetype) initWithLandmarks: (nonnull NSArray<NSArray<MPPNormalizedLandmark *> *> *)landmarks worldLandmarks: (nonnull NSArray<NSArray<MPPLandmark *> *> *)worldLandmarks segmentationMasks:(nullable NSArray<MPPMask *> *)segmentationMasks timestampInMilliseconds:(NSInteger)timestampInMilliseconds;ParameterslandmarksAn array of NormalizedLandmarkobjects.worldLandmarksAn array of Landmarkobjects.segmentationMasksAn array of Maskobjects.timestampInMillisecondsThe timestamp (in milliseconds) for this result. Return ValueAn instance of PoseLandmarkerResultinitialized with the given array of landmarks, world landmarks, segmentation masks of the detected poses and timestamp (in milliseconds).
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)initWithTimestampInMilliseconds:(NSInteger)timestampInMilliseconds NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;