public sealed class ImageObjectDetectionPredictionResult : IMessage<ImageObjectDetectionPredictionResult>, IEquatable<ImageObjectDetectionPredictionResult>, IDeepCloneable<ImageObjectDetectionPredictionResult>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud AI Platform v1beta1 API class ImageObjectDetectionPredictionResult.
Prediction output format for Image Object Detection.
Implements
IMessageImageObjectDetectionPredictionResult, IEquatableImageObjectDetectionPredictionResult, IDeepCloneableImageObjectDetectionPredictionResult, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1Beta1.Schema.Predict.PredictionAssembly
Google.Cloud.AIPlatform.V1Beta1.dll
Constructors
ImageObjectDetectionPredictionResult()
public ImageObjectDetectionPredictionResult()
ImageObjectDetectionPredictionResult(ImageObjectDetectionPredictionResult)
public ImageObjectDetectionPredictionResult(ImageObjectDetectionPredictionResult other)
Parameter | |
---|---|
Name | Description |
other |
ImageObjectDetectionPredictionResult |
Properties
Bboxes
public RepeatedField<ListValue> Bboxes { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldListValue |
Confidences
public RepeatedField<float> Confidences { get; }
The Model's confidences in correctness of the predicted IDs, higher value means higher confidence. Order matches the Ids.
Property Value | |
---|---|
Type | Description |
RepeatedFieldfloat |
DisplayNames
public RepeatedField<string> DisplayNames { get; }
The display names of the AnnotationSpecs that had been identified, order matches the IDs.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
Ids
public RepeatedField<long> Ids { get; }
The resource IDs of the AnnotationSpecs that had been identified, ordered by the confidence score descendingly.
Property Value | |
---|---|
Type | Description |
RepeatedFieldlong |