Class: Aws::Rekognition::Types::FaceDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::FaceDetection
- 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
-
#face ⇒ Types::FaceDetail
The face properties for the detected face.
-
#timestamp ⇒ Integer
Time, in milliseconds from the start of the video, that the face was detected.
Instance Attribute Details
#face ⇒ Types::FaceDetail
The face properties for the detected face.
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 |
#timestamp ⇒ Integer
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.
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 |