Class: Aws::Rekognition::Types::PersonDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::PersonDetail
- Defined in:
- gems/aws-sdk-rekognition/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.
4356 4357 4358 4359 4360 4361 4362 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4356 class PersonDetail < Struct.new( :index, :bounding_box, :face) SENSITIVE = [] include Aws::Structure end |
#face ⇒ Types::FaceDetail
Face details for the detected person.
4356 4357 4358 4359 4360 4361 4362 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4356 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.
4356 4357 4358 4359 4360 4361 4362 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4356 class PersonDetail < Struct.new( :index, :bounding_box, :face) SENSITIVE = [] include Aws::Structure end |