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

Copy Markdown View Source

Metadata for web pages.

Attributes

  • full_matching_images (type: list(Googly.CloudVision.Model.GoogleCloudVisionV1p1beta1WebDetectionWebImage.t())) - Fully matching images on the page. Can include resized copies of the query image.
  • page_title (type: String.t()) - Title for the web page, may contain HTML markups.
  • partial_matching_images (type: list(Googly.CloudVision.Model.GoogleCloudVisionV1p1beta1WebDetectionWebImage.t())) - Partial matching images on the page. Those images are similar enough to share some key-point features. For example an original image will likely have partial matching for its crops.
  • score (type: number()) - (Deprecated) Overall relevancy score for the web page.
  • url (type: String.t()) - The result web page URL.

Summary

Types

t()

@type t() :: %Googly.CloudVision.Model.GoogleCloudVisionV1p1beta1WebDetectionWebPage{
  full_matching_images:
    [
      Googly.CloudVision.Model.GoogleCloudVisionV1p1beta1WebDetectionWebImage.t()
    ]
    | nil,
  page_title: String.t() | nil,
  partial_matching_images:
    [
      Googly.CloudVision.Model.GoogleCloudVisionV1p1beta1WebDetectionWebImage.t()
    ]
    | nil,
  score: number() | nil,
  url: String.t() | nil
}