Page Summary
-
MLKPoseDetectoris designed for performing body-pose estimation within images. -
It offers both synchronous and asynchronous processing methods for pose detection.
-
Developers can configure the detector with custom options using
poseDetectorWithOptions:. -
Results include an array of detected poses or an error if the process fails.
-
Direct initialization using
initis unavailable; class methods should be utilized.
MLKPoseDetector
@interface MLKPoseDetector : NSObjectA detector for performing body-pose estimation.
-
Returns a pose detector with the given options.
Declaration
Objective-C
+ (nonnull instancetype)poseDetectorWithOptions: (nonnull MLKCommonPoseDetectorOptions *)options;Parameters
optionsOptions for configuring the pose detector.
Return Value
A pose detector configured with the given options.
-
Unavailable. Use the class methods.
Declaration
Objective-C
- (nonnull instancetype)init; -
Processes the given image for pose detection.
Declaration
Objective-C
- (void)processImage:(nonnull id<MLKCompatibleImage>)image completion:(nonnull MLKPoseDetectionCallback)completion;Parameters
imageThe image to process.
completionHandler to call back on the main thread with pose detected or error.
-
Returns the pose results in the given image. The pose detection is performed synchronously on the calling thread.
It is advised to call this method off the main thread to avoid blocking the UI. As a result, an
NSExceptionis raised if this method is called on the main thread.Declaration
Objective-C
- (nullable NSArray<MLKPose *> *) resultsInImage:(nonnull id<MLKCompatibleImage>)image error:(NSError *_Nullable *_Nullable)error;Parameters
imageThe image to get results in.
errorAn optional error parameter populated when there is an error getting results.
Return Value
The array of poses detected in the given image or
nilif there was an error. If no poses are detected, then an empty array will be returned.