Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TextDetectionResult

import type { TextDetectionResult } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

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.

interface TextDetectionResult {
TextDetection?: TextDetection | null;
Timestamp?: number | null;
}

§Properties

§
TextDetection?: TextDetection | null
[src]

Details about text detected in a video.

§
Timestamp?: number | null
[src]

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.