Class Line
The line of text.
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class Line
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? | The confidence score between 0 and 1. |
Remarks
Required
Text
Declaration
[Required(ErrorMessage = "Text is required.")]
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
string | The text recognized. |
Remarks
Required
WordIndexes
Declaration
[Required(ErrorMessage = "WordIndexes is required.")]
[JsonProperty(PropertyName = "wordIndexes")]
public List<int> WordIndexes { get; set; }
Property Value
Type | Description |
---|---|
List<int> | The array of words. |
Remarks
Required