interface IdentifyLabelsOutput {
    labels?: {
        boundingBoxes?: (undefined | BoundingBox)[];
        metadata?: object;
        name?: string;
    }[];
    unsafe?: "YES" | "NO" | "UNKNOWN";
}

Properties

Properties

labels?: {
    boundingBoxes?: (undefined | BoundingBox)[];
    metadata?: object;
    name?: string;
}[]

Type declaration

  • Optional boundingBoxes?: (undefined | BoundingBox)[]
  • Optional metadata?: object
  • Optional name?: string
unsafe?: "YES" | "NO" | "UNKNOWN"