Page Summary
-
MLKFaceLandmarkrepresents a specific point on a detected human face, such as an eye or nose. -
Each landmark has a
typespecifying what facial feature it is and apositionindicating its 2D location. -
You cannot directly create an
MLKFaceLandmarkinstance using theinitmethod; it's likely obtained from face detection results.
MLKFaceLandmark
@interface MLKFaceLandmark : NSObjectA landmark on a human face detected in an image.
-
The type of the facial landmark.
Declaration
Objective-C
@property (nonatomic, readonly) MLKFaceLandmarkType _Nonnull type; -
2D position of the facial landmark.
Declaration
Objective-C
@property (nonatomic, readonly) MLKVisionPoint *_Nonnull position; -
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;