Class: Aws::Rekognition::Types::FaceDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::FaceDetection
- 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
-
#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.
3049 3050 3051 3052 3053 3054 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3049 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.
3049 3050 3051 3052 3053 3054 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3049 class FaceDetection < Struct.new( :timestamp, :face) SENSITIVE = [] include Aws::Structure end |