Class: Google::Apis::VisionV1::WebDetection
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::WebDetection
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb
Overview
Relevant information for the image from the Internet.
Instance Attribute Summary collapse
-
#best_guess_labels ⇒ Array<Google::Apis::VisionV1::WebLabel>
The service's best guess as to the topic of the request image.
-
#full_matching_images ⇒ Array<Google::Apis::VisionV1::WebImage>
Fully matching images from the Internet.
-
#pages_with_matching_images ⇒ Array<Google::Apis::VisionV1::WebPage>
Web pages containing the matching images from the Internet.
-
#partial_matching_images ⇒ Array<Google::Apis::VisionV1::WebImage>
Partial matching images from the Internet.
-
#visually_similar_images ⇒ Array<Google::Apis::VisionV1::WebImage>
The visually similar image results.
-
#web_entities ⇒ Array<Google::Apis::VisionV1::WebEntity>
Deduced entities from similar images on the Internet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebDetection
constructor
A new instance of WebDetection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WebDetection
Returns a new instance of WebDetection.
10053 10054 10055 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10053 def initialize(**args) update!(**args) end |
Instance Attribute Details
#best_guess_labels ⇒ Array<Google::Apis::VisionV1::WebLabel>
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
10023 10024 10025 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10023 def best_guess_labels @best_guess_labels end |
#full_matching_images ⇒ Array<Google::Apis::VisionV1::WebImage>
Fully matching images from the Internet. Can include resized copies of the
query image.
Corresponds to the JSON property fullMatchingImages
10029 10030 10031 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10029 def full_matching_images @full_matching_images end |
#pages_with_matching_images ⇒ Array<Google::Apis::VisionV1::WebPage>
Web pages containing the matching images from the Internet.
Corresponds to the JSON property pagesWithMatchingImages
10034 10035 10036 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10034 def pages_with_matching_images @pages_with_matching_images end |
#partial_matching_images ⇒ Array<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
10041 10042 10043 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10041 def partial_matching_images @partial_matching_images end |
#visually_similar_images ⇒ Array<Google::Apis::VisionV1::WebImage>
The visually similar image results.
Corresponds to the JSON property visuallySimilarImages
10046 10047 10048 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10046 def visually_similar_images @visually_similar_images end |
#web_entities ⇒ Array<Google::Apis::VisionV1::WebEntity>
Deduced entities from similar images on the Internet.
Corresponds to the JSON property webEntities
10051 10052 10053 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10051 def web_entities @web_entities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10058 10059 10060 10061 10062 10063 10064 10065 |
# File 'lib/google/apis/vision_v1/classes.rb', line 10058 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 |