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:



5661
5662
5663
5664
5665
5666
5667
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5661

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

#faceTypes::FaceDetail

Face details for the detected person.

Returns:



5661
5662
5663
5664
5665
5666
5667
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5661

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)


5661
5662
5663
5664
5665
5666
5667
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5661

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