Class: Aws::Rekognition::Types::TextDetectionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::TextDetectionResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text_detection ⇒ Types::TextDetection
Details about text detected in a video.
-
#timestamp ⇒ Integer
The time, in milliseconds from the start of the video, that the text was detected.
Instance Attribute Details
#text_detection ⇒ Types::TextDetection
Details about text detected in a video.
7928 7929 7930 7931 7932 7933 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7928 class TextDetectionResult < Struct.new( :timestamp, :text_detection) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Integer
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.
7928 7929 7930 7931 7932 7933 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7928 class TextDetectionResult < Struct.new( :timestamp, :text_detection) SENSITIVE = [] include Aws::Structure end |