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

Copy Markdown View Source

Relevant information for the image from the Internet.

Attributes

  • best_guess_labels (type: list(Googly.CloudVision.Model.WebLabel.t())) - The service's best guess as to the topic of the request image. Inferred from similar images on the open web.
  • full_matching_images (type: list(Googly.CloudVision.Model.WebImage.t())) - Fully matching images from the Internet. Can include resized copies of the query image.
  • pages_with_matching_images (type: list(Googly.CloudVision.Model.WebPage.t())) - Web pages containing the matching images from the Internet.
  • partial_matching_images (type: list(Googly.CloudVision.Model.WebImage.t())) - Partial matching images from the Internet. Those images are similar enough to share some key-point features. For example an original image will likely have partial matching for its crops.
  • visually_similar_images (type: list(Googly.CloudVision.Model.WebImage.t())) - The visually similar image results.
  • web_entities (type: list(Googly.CloudVision.Model.WebEntity.t())) - Deduced entities from similar images on the Internet.

Summary

Types

t()

@type t() :: %Googly.CloudVision.Model.WebDetection{
  best_guess_labels: [Googly.CloudVision.Model.WebLabel.t()] | nil,
  full_matching_images: [Googly.CloudVision.Model.WebImage.t()] | nil,
  pages_with_matching_images: [Googly.CloudVision.Model.WebPage.t()] | nil,
  partial_matching_images: [Googly.CloudVision.Model.WebImage.t()] | nil,
  visually_similar_images: [Googly.CloudVision.Model.WebImage.t()] | nil,
  web_entities: [Googly.CloudVision.Model.WebEntity.t()] | nil
}