Show / Hide Table of Contents

Class VideoText

Detected text in a video.

Inheritance
object
VideoText
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 VideoText

Properties

Segments

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

Text segments in a video.

Remarks

Required

Text

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

Detected text.

Remarks

Required

In this article
Back to top