Class: Aws::Rekognition::Types::TextDetectionResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#text_detectionTypes::TextDetection

Details about text detected in a video.



7915
7916
7917
7918
7919
7920
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7915

class TextDetectionResult < Struct.new(
  :timestamp,
  :text_detection)
  SENSITIVE = []
  include Aws::Structure
end

#timestampInteger

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.

Returns:

  • (Integer)


7915
7916
7917
7918
7919
7920
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7915

class TextDetectionResult < Struct.new(
  :timestamp,
  :text_detection)
  SENSITIVE = []
  include Aws::Structure
end