View Source GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1SchemaPredictPredictionImageObjectDetectionPredictionResult (google_api_ai_platform v0.13.0)

Prediction output format for Image Object Detection.

Attributes

  • bboxes (type: list(list(any())), default: nil) - Bounding boxes, i.e. the rectangles over the image, that pinpoint the found AnnotationSpecs. Given in order that matches the IDs. Each bounding box is an array of 4 numbers xMin, xMax, yMin, and yMax, which represent the extremal coordinates of the box. They are relative to the image size, and the point 0,0 is in the top left of the image.
  • confidences (type: list(number()), default: nil) - The Model's confidences in correctness of the predicted IDs, higher value means higher confidence. Order matches the Ids.
  • displayNames (type: list(String.t), default: nil) - The display names of the AnnotationSpecs that had been identified, order matches the IDs.
  • ids (type: list(String.t), default: nil) - The resource IDs of the AnnotationSpecs that had been identified, ordered by the confidence score descendingly.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() ::
  %GoogleApi.AIPlatform.V1.Model.GoogleCloudAiplatformV1SchemaPredictPredictionImageObjectDetectionPredictionResult{
    bboxes: [[any()]] | nil,
    confidences: [number()] | nil,
    displayNames: [String.t()] | nil,
    ids: [String.t()] | nil
  }

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.