Detection

Object detection result with ID, label, bounding box, and segmentation

  • bbox
    Type: object ยท BoundingBox

    Bounding box coordinates for object detection and image regions

    • x1
      Type: number

      The x-coordinate of the top-left corner (percentage 0-100)

    • x2
      Type: number

      The x-coordinate of the bottom-right corner (percentage 0-100)

    • y1
      Type: number

      The y-coordinate of the top-left corner (percentage 0-100)

    • y2
      Type: number

      The y-coordinate of the bottom-right corner (percentage 0-100)

  • id
    Type: string Format: uuid

    Unique identifier for the detection (can be used for Lens search)

  • label
    Type: string

    The label of the detected object

  • segmentation
    Type: array array array number[][][]

    Array of polygons, each containing [x, y] coordinate pairs defining the segmentation mask

    • Type: array array number[][]