Googly.CloudVision.Model.LocalizedObjectAnnotation (googly_cloud_vision v0.1.0)

Copy Markdown View Source

Set of detected objects with bounding boxes.

Attributes

  • bounding_poly (type: Googly.CloudVision.Model.BoundingPoly.t()) - Image region to which this object belongs. This must be populated.
  • language_code (type: String.t()) - The BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
  • mid (type: String.t()) - Object ID that should align with EntityAnnotation mid.
  • name (type: String.t()) - Object name, expressed in its language_code language.
  • score (type: number()) - Score of the result. Range [0, 1].

Summary

Types

t()

@type t() :: %Googly.CloudVision.Model.LocalizedObjectAnnotation{
  bounding_poly: Googly.CloudVision.Model.BoundingPoly.t() | nil,
  language_code: String.t() | nil,
  mid: String.t() | nil,
  name: String.t() | nil,
  score: number() | nil
}