Show / Hide Table of Contents

Class Annotation

Annotation for Example. Each example may have one or more annotations. For example in image classification problem, each image might have one or more labels. We call labels binded with this image an Annotation.

Inheritance
System.Object
Annotation
Implements
IMessage<Annotation>
System.IEquatable<Annotation>
IDeepCloneable<Annotation>
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 Annotation : IMessage<Annotation>, IEquatable<Annotation>, IDeepCloneable<Annotation>, IBufferMessage, IMessage

Constructors

Annotation()

Declaration
public Annotation()

Annotation(Annotation)

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

Properties

AnnotationMetadata

Output only. Annotation metadata, including information like votes for labels.

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

AnnotationSentiment

Output only. Sentiment for this annotation.

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

AnnotationSource

Output only. The source of the annotation.

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

AnnotationValue

Output only. This is the actual annotation value, e.g classification, bounding box values are stored here.

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

Name

Output only. Unique name of this annotation, format is:

projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset}/examples/{example_id}/annotations/{annotation_id}

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
Back to top