Show / Hide Table of Contents

Class KeyValueSelectionEntity

This allows the labeler to apply label the highlighted text from OCR, this includes labelled and unlabelled data.

Inheritance
object
Entity
KeyValueSelectionEntity
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class KeyValueSelectionEntity : Entity

Properties

BoundingPolygon

Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type Description
BoundingPolygon
Remarks

Required

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

float value, score from OCR.

Remarks

Required

Labels

Declaration
[JsonProperty(PropertyName = "labels")]
public List<Label> Labels { get; set; }
Property Value
Type Description
List<Label>

A collection of label entities.

PageNumber

Declaration
[JsonProperty(PropertyName = "pageNumber")]
public decimal? PageNumber { get; set; }
Property Value
Type Description
decimal?

Integer value.

Rotation

Declaration
[JsonProperty(PropertyName = "rotation")]
public decimal? Rotation { get; set; }
Property Value
Type Description
decimal?

Integer value.

Text

Declaration
[Required(ErrorMessage = "Text is required.")]
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
Property Value
Type Description
string

Entity Name.

Remarks

Required

In this article
Back to top