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.



7928
7929
7930
7931
7932
7933
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7928

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)


7928
7929
7930
7931
7932
7933
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7928

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