AI-generated Key Takeaways
-
MLKPoseprovides a description of a detected pose, including an array of all landmarks. -
It offers a method to retrieve a specific landmark based on its type.
-
Initialization of
MLKPosedirectly is unavailable; it is likely obtained through other pose detection processes.
MLKPose
@interface MLKPose : NSObjectDescribes a pose detection result.
-
An array of all the landmarks in the detected pose.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<MLKPoseLandmark *> *_Nonnull landmarks; -
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init; -
Returns the landmark which corresponds to a given type.
Declaration
Objective-C
- (nonnull MLKPoseLandmark *)landmarkOfType:(nonnull MLKPoseLandmarkType)type;Parameters
typeThe type of the landmark which should be returned.
Return Value
The landmark which corresponds to
type.