Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetection

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/vision_v1p1beta1/classes.rb,
generated/google/apis/vision_v1p1beta1/representations.rb,
generated/google/apis/vision_v1p1beta1/representations.rb

Overview

Relevant information for the image from the Internet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p4beta1WebDetection

Returns a new instance of GoogleCloudVisionV1p4beta1WebDetection.



8446
8447
8448
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8446

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#best_guess_labelsArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebLabel>

The service's best guess as to the topic of the request image. Inferred from similar images on the open web. Corresponds to the JSON property bestGuessLabels



8416
8417
8418
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8416

def best_guess_labels
  @best_guess_labels
end

#full_matching_imagesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebImage>

Fully matching images from the Internet. Can include resized copies of the query image. Corresponds to the JSON property fullMatchingImages



8422
8423
8424
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8422

def full_matching_images
  @full_matching_images
end

#pages_with_matching_imagesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebPage>

Web pages containing the matching images from the Internet. Corresponds to the JSON property pagesWithMatchingImages



8427
8428
8429
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8427

def pages_with_matching_images
  @pages_with_matching_images
end

#partial_matching_imagesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebImage>

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. Corresponds to the JSON property partialMatchingImages



8434
8435
8436
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8434

def partial_matching_images
  @partial_matching_images
end

#visually_similar_imagesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebImage>

The visually similar image results. Corresponds to the JSON property visuallySimilarImages



8439
8440
8441
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8439

def visually_similar_images
  @visually_similar_images
end

#web_entitiesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1WebDetectionWebEntity>

Deduced entities from similar images on the Internet. Corresponds to the JSON property webEntities



8444
8445
8446
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8444

def web_entities
  @web_entities
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8451
8452
8453
8454
8455
8456
8457
8458
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 8451

def update!(**args)
  @best_guess_labels = args[:best_guess_labels] if args.key?(:best_guess_labels)
  @full_matching_images = args[:full_matching_images] if args.key?(:full_matching_images)
  @pages_with_matching_images = args[:pages_with_matching_images] if args.key?(:pages_with_matching_images)
  @partial_matching_images = args[:partial_matching_images] if args.key?(:partial_matching_images)
  @visually_similar_images = args[:visually_similar_images] if args.key?(:visually_similar_images)
  @web_entities = args[:web_entities] if args.key?(:web_entities)
end