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:



5713
5714
5715
5716
5717
5718
5719
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5713

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

#faceTypes::FaceDetail

Face details for the detected person.

Returns:



5713
5714
5715
5716
5717
5718
5719
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5713

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)


5713
5714
5715
5716
5717
5718
5719
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5713

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