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_detection ⇒ Types::TextDetection

Details about text detected in a video.



8037
8038
8039
8040
8041
8042
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8037

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.

Returns:

  • (Integer)


8037
8038
8039
8040
8041
8042
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 8037

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