Class: Aws::Rekognition::Types::PersonDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::PersonDetection
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Details and path tracking information for a single time a person's
path is tracked in a video. Amazon Rekognition operations that track
people's paths return an array of PersonDetection
objects with
elements for each time a person's path is tracked in a video.
For more information, see GetPersonTracking in the Amazon Rekognition Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#person ⇒ Types::PersonDetail
Details about a person whose path was tracked in a video.
-
#timestamp ⇒ Integer
The time, in milliseconds from the start of the video, that the person's path was tracked.
Instance Attribute Details
#person ⇒ Types::PersonDetail
Details about a person whose path was tracked in a video.
4643 4644 4645 4646 4647 4648 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4643 class PersonDetection < Struct.new( :timestamp, :person) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Integer
The time, in milliseconds from the start of the video, that the person's path was tracked.
4643 4644 4645 4646 4647 4648 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4643 class PersonDetection < Struct.new( :timestamp, :person) SENSITIVE = [] include Aws::Structure end |