Class: Aws::Rekognition::Types::CelebrityRecognition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Overview

Information about a detected celebrity and the time the celebrity was detected in a stored video. For more information, see GetCelebrityRecognition in the Amazon Rekognition Developer Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#celebrityTypes::CelebrityDetail

Information about a recognized celebrity.



428
429
430
431
432
433
# File 'lib/aws-sdk-rekognition/types.rb', line 428

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

#timestampInteger

The time, in milliseconds from the start of the video, that the celebrity was recognized. Note that ‘Timestamp` is not guaranteed to be accurate to the individual frame where the celebrity first appears.

Returns:

  • (Integer)


428
429
430
431
432
433
# File 'lib/aws-sdk-rekognition/types.rb', line 428

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