Class: Aws::Rekognition::Types::PersonDetail

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bounding_boxTypes::BoundingBox

Bounding box around the detected person.

Returns:



5636
5637
5638
5639
5640
5641
5642
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5636

class PersonDetail < Struct.new(
  :index,
  :bounding_box,
  :face)
  SENSITIVE = []
  include Aws::Structure
end

#faceTypes::FaceDetail

Face details for the detected person.

Returns:



5636
5637
5638
5639
5640
5641
5642
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5636

class PersonDetail < Struct.new(
  :index,
  :bounding_box,
  :face)
  SENSITIVE = []
  include Aws::Structure
end

#indexInteger

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.

Returns:

  • (Integer)


5636
5637
5638
5639
5640
5641
5642
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5636

class PersonDetail < Struct.new(
  :index,
  :bounding_box,
  :face)
  SENSITIVE = []
  include Aws::Structure
end