Detection

class Detection : NSObject

Single result of object detection.

  • Relative coordinates of rectangle bounding the detected object on the image. Expressed as a value in range [0..1] relative to image size.

    Declaration

    Swift

    var boundingBox: CGRect { get }
  • Class of the the detected object

    Declaration

    Swift

    var detectionClass: DetectionClass { get }
  • Confidence of determining a detection class

    Declaration

    Swift

    var confidence: Float { get }