Show / Hide Table of Contents

Class GoogleCloudVisionV1p4beta1CropHint

Single crop hint that is used to generate a new crop when serving an image.

Inheritance
System.Object
GoogleCloudVisionV1p4beta1CropHint
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 GoogleCloudVisionV1p4beta1CropHint : IDirectResponseSchema

Properties

BoundingPoly

The bounding polygon for the crop region. The coordinates of the bounding box are in the original image's scale.

Declaration
[JsonProperty("boundingPoly")]
public virtual GoogleCloudVisionV1p4beta1BoundingPoly BoundingPoly { get; set; }
Property Value
Type Description
GoogleCloudVisionV1p4beta1BoundingPoly

Confidence

Confidence of this being a salient region. Range [0, 1].

Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ETag

The ETag of the item.

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

ImportanceFraction

Fraction of importance of this salient region with respect to the original image.

Declaration
[JsonProperty("importanceFraction")]
public virtual float? ImportanceFraction { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top