Show / Hide Table of Contents

Class ImageText

The detected text.

Inheritance
object
ImageText
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class ImageText

Properties

Lines

Declaration
[Required(ErrorMessage = "Lines is required.")]
[JsonProperty(PropertyName = "lines")]
public List<Line> Lines { get; set; }
Property Value
Type Description
List<Line>

The lines of text recognized in an image.

Remarks

Required

Words

Declaration
[Required(ErrorMessage = "Words is required.")]
[JsonProperty(PropertyName = "words")]
public List<Word> Words { get; set; }
Property Value
Type Description
List<Word>

The words recognized in an image.

Remarks

Required

In this article
Back to top