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

Copy Markdown View Source

Color information consists of RGB channels, score, and the fraction of the image that the color occupies in the image.

Attributes

  • color (type: Googly.CloudVision.Model.Color.t()) - RGB components of the color.
  • pixel_fraction (type: number()) - The fraction of pixels the color occupies in the image. Value in range [0, 1].
  • score (type: number()) - Image-specific score for this color. Value in range [0, 1].

Summary

Types

t()

@type t() :: %Googly.CloudVision.Model.GoogleCloudVisionV1p3beta1ColorInfo{
  color: Googly.CloudVision.Model.Color.t() | nil,
  pixel_fraction: number() | nil,
  score: number() | nil
}