Module Values.TextDetectionResultSource

Information about text detected in a video. Incudes the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.

Sourcetype nonrec t = {
  1. timestamp : Timestamp.t option;
    (*

    The time, in milliseconds from the start of the video, that the text was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the text first appears.

    *)
  2. textDetection : TextDetection.t option;
    (*

    Details about text detected in a video.

    *)
}
Sourceval make : ?timestamp:??? -> ?textDetection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Timestamp.t | `Structure of (string * [> `Enum of string | `Float of Percent.t | `Integer of UInteger.t | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Float of Float_.t ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t