Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1SchemaPredictPredictionImageObjectDetectionPredictionResult

Prediction output format for Image Object Detection.

Inheritance
object
GoogleCloudAiplatformV1beta1SchemaPredictPredictionImageObjectDetectionPredictionResult
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1SchemaPredictPredictionImageObjectDetectionPredictionResult : IDirectResponseSchema

Properties

Bboxes

Bounding boxes, i.e. the rectangles over the image, that pinpoint the found AnnotationSpecs. Given in order that matches the IDs. Each bounding box is an array of 4 numbers xMin, xMax, yMin, and yMax, which represent the extremal coordinates of the box. They are relative to the image size, and the point 0,0 is in the top left of the image.

Declaration
[JsonProperty("bboxes")]
public virtual IList<IList<object>> Bboxes { get; set; }
Property Value
Type Description
IList<IList<object>>

Confidences

The Model's confidences in correctness of the predicted IDs, higher value means higher confidence. Order matches the Ids.

Declaration
[JsonProperty("confidences")]
public virtual IList<float?> Confidences { get; set; }
Property Value
Type Description
IList<float?>

DisplayNames

The display names of the AnnotationSpecs that had been identified, order matches the IDs.

Declaration
[JsonProperty("displayNames")]
public virtual IList<string> DisplayNames { get; set; }
Property Value
Type Description
IList<string>

ETag

The ETag of the item.

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

Ids

The resource IDs of the AnnotationSpecs that had been identified, ordered by the confidence score descendingly.

Declaration
[JsonProperty("ids")]
public virtual IList<long?> Ids { get; set; }
Property Value
Type Description
IList<long?>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX