MLKitObjectDetectionCommon Framework Reference

  • The MLKObjectDetectorMode type defines the modes for object detection.

  • The MLKObjectDetectionCallback type 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 nil if there was an error.

    Declaration

    Objective-C

    typedef void (^MLKObjectDetectionCallback)(NSArray<MLKObject *> *_Nullable,
                                               NSError *_Nullable)

    Parameters

    objects

    Array of objects detected in the image or nil if there was an error.

    error

    The error or nil.