Page Summary
-
The
MLKObjectDetectorModetype defines the modes for object detection. -
The
MLKObjectDetectionCallbacktype is a block providing detected objects or an error.
Type Definitions
The following type definitions are available globally.
-
@enum ObjectDetectorMode Object detector modes.
Declaration
Objective-C
typedef NSInteger MLKObjectDetectorMode -
A block containing an array of objects detected or
nilif there was an error.Declaration
Objective-C
typedef void (^MLKObjectDetectionCallback)(NSArray<MLKObject *> *_Nullable, NSError *_Nullable)Parameters
objectsArray of objects detected in the image or
nilif there was an error.errorThe error or
nil.