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

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



2503
2504
2505
2506
2507
2508
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2503

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)


2503
2504
2505
2506
2507
2508
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2503

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