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.3/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.