Class: Aws::Rekognition::Types::PersonDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::PersonDetail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Details about a person detected in a video analysis request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Types::BoundingBox
Bounding box around the detected person.
-
#face ⇒ Types::FaceDetail
Face details for the detected person.
-
#index ⇒ Integer
Identifier for the person detected person within a video.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
Bounding box around the detected person.
5661 5662 5663 5664 5665 5666 5667 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5661 class PersonDetail < Struct.new( :index, :bounding_box, :face) SENSITIVE = [] include Aws::Structure end |
#face ⇒ Types::FaceDetail
Face details for the detected person.
5661 5662 5663 5664 5665 5666 5667 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5661 class PersonDetail < Struct.new( :index, :bounding_box, :face) SENSITIVE = [] include Aws::Structure end |
#index ⇒ Integer
Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.
5661 5662 5663 5664 5665 5666 5667 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5661 class PersonDetail < Struct.new( :index, :bounding_box, :face) SENSITIVE = [] include Aws::Structure end |