Show / Hide Table of Contents

Class GoogleCloudVisionV1p1beta1WebDetection

Relevant information for the image from the Internet.

Inheritance
System.Object
GoogleCloudVisionV1p1beta1WebDetection
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class GoogleCloudVisionV1p1beta1WebDetection : IDirectResponseSchema

Properties

BestGuessLabels

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

Declaration
[JsonProperty("bestGuessLabels")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebLabel> BestGuessLabels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebLabel>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FullMatchingImages

Fully matching images from the Internet. Can include resized copies of the query image.

Declaration
[JsonProperty("fullMatchingImages")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage> FullMatchingImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage>

PagesWithMatchingImages

Web pages containing the matching images from the Internet.

Declaration
[JsonProperty("pagesWithMatchingImages")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebPage> PagesWithMatchingImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebPage>

PartialMatchingImages

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.

Declaration
[JsonProperty("partialMatchingImages")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage> PartialMatchingImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage>

VisuallySimilarImages

The visually similar image results.

Declaration
[JsonProperty("visuallySimilarImages")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage> VisuallySimilarImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebImage>

WebEntities

Deduced entities from similar images on the Internet.

Declaration
[JsonProperty("webEntities")]
public virtual IList<GoogleCloudVisionV1p1beta1WebDetectionWebEntity> WebEntities { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p1beta1WebDetectionWebEntity>

Implements

IDirectResponseSchema
In This Article
Back to top