Class: Google::Apis::VisionV1::WebDetection

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

Overview

Relevant information for the image from the Internet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WebDetection

Returns a new instance of WebDetection



966
967
968
# File 'generated/google/apis/vision_v1/classes.rb', line 966

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

Instance Attribute Details

#full_matching_imagesArray<Google::Apis::VisionV1::WebImage>

Fully matching images from the Internet. They're definite neardups and most often a copy of the query image with merely a size change. Corresponds to the JSON property fullMatchingImages



942
943
944
# File 'generated/google/apis/vision_v1/classes.rb', line 942

def full_matching_images
  @full_matching_images
end

#pages_with_matching_imagesArray<Google::Apis::VisionV1::WebPage>

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



952
953
954
# File 'generated/google/apis/vision_v1/classes.rb', line 952

def pages_with_matching_images
  @pages_with_matching_images
end

#partial_matching_imagesArray<Google::Apis::VisionV1::WebImage>

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



959
960
961
# File 'generated/google/apis/vision_v1/classes.rb', line 959

def partial_matching_images
  @partial_matching_images
end

#visually_similar_imagesArray<Google::Apis::VisionV1::WebImage>

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



964
965
966
# File 'generated/google/apis/vision_v1/classes.rb', line 964

def visually_similar_images
  @visually_similar_images
end

#web_entitiesArray<Google::Apis::VisionV1::WebEntity>

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



947
948
949
# File 'generated/google/apis/vision_v1/classes.rb', line 947

def web_entities
  @web_entities
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



971
972
973
974
975
976
977
# File 'generated/google/apis/vision_v1/classes.rb', line 971

def update!(**args)
  @full_matching_images = args[:full_matching_images] if args.key?(:full_matching_images)
  @web_entities = args[:web_entities] if args.key?(:web_entities)
  @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)
end