Class: Aws::Rekognition::Types::FaceDetection

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

Overview

Information about a face detected in a video analysis request and the time the face was detected in the video.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#faceTypes::FaceDetail

The face properties for the detected face.

Returns:



3036
3037
3038
3039
3040
3041
# File 'lib/aws-sdk-rekognition/types.rb', line 3036

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

#timestampInteger

Time, in milliseconds from the start of the video, that the face was detected. Note that ‘Timestamp` is not guaranteed to be accurate to the individual frame where the face first appears.

Returns:

  • (Integer)


3036
3037
3038
3039
3040
3041
# File 'lib/aws-sdk-rekognition/types.rb', line 3036

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