Show / Hide Table of Contents

Class AnnotationValue

Annotation value for an example.

Inheritance
System.Object
AnnotationValue
Implements
IMessage<AnnotationValue>
System.IEquatable<AnnotationValue>
IDeepCloneable<AnnotationValue>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class AnnotationValue : IMessage<AnnotationValue>, IEquatable<AnnotationValue>, IDeepCloneable<AnnotationValue>, IBufferMessage, IMessage

Constructors

AnnotationValue()

Declaration
public AnnotationValue()

AnnotationValue(AnnotationValue)

Declaration
public AnnotationValue(AnnotationValue other)
Parameters
Type Name Description
AnnotationValue other

Properties

ImageBoundingPolyAnnotation

Annotation value for image bounding box, oriented bounding box and polygon cases.

Declaration
public ImageBoundingPolyAnnotation ImageBoundingPolyAnnotation { get; set; }
Property Value
Type Description
ImageBoundingPolyAnnotation

ImageClassificationAnnotation

Annotation value for image classification case.

Declaration
public ImageClassificationAnnotation ImageClassificationAnnotation { get; set; }
Property Value
Type Description
ImageClassificationAnnotation

ImagePolylineAnnotation

Annotation value for image polyline cases. Polyline here is different from BoundingPoly. It is formed by line segments connected to each other but not closed form(Bounding Poly). The line segments can cross each other.

Declaration
public ImagePolylineAnnotation ImagePolylineAnnotation { get; set; }
Property Value
Type Description
ImagePolylineAnnotation

ImageSegmentationAnnotation

Annotation value for image segmentation.

Declaration
public ImageSegmentationAnnotation ImageSegmentationAnnotation { get; set; }
Property Value
Type Description
ImageSegmentationAnnotation

TextClassificationAnnotation

Annotation value for text classification case.

Declaration
public TextClassificationAnnotation TextClassificationAnnotation { get; set; }
Property Value
Type Description
TextClassificationAnnotation

TextEntityExtractionAnnotation

Annotation value for text entity extraction case.

Declaration
public TextEntityExtractionAnnotation TextEntityExtractionAnnotation { get; set; }
Property Value
Type Description
TextEntityExtractionAnnotation

ValueTypeCase

Declaration
public AnnotationValue.ValueTypeOneofCase ValueTypeCase { get; }
Property Value
Type Description
AnnotationValue.ValueTypeOneofCase

VideoClassificationAnnotation

Annotation value for video classification case.

Declaration
public VideoClassificationAnnotation VideoClassificationAnnotation { get; set; }
Property Value
Type Description
VideoClassificationAnnotation

VideoEventAnnotation

Annotation value for video event case.

Declaration
public VideoEventAnnotation VideoEventAnnotation { get; set; }
Property Value
Type Description
VideoEventAnnotation

VideoObjectTrackingAnnotation

Annotation value for video object detection and tracking case.

Declaration
public VideoObjectTrackingAnnotation VideoObjectTrackingAnnotation { get; set; }
Property Value
Type Description
VideoObjectTrackingAnnotation
Back to top