Class: Aws::Rekognition::Types::PersonMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::PersonMatch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Information about a person whose face matches a face(s) in an Amazon Rekognition collection. Includes information about the faces in the Amazon Rekognition collection (FaceMatch), information about the person (PersonDetail), and the time stamp for when the person was detected in a video. An array of ‘PersonMatch` objects is returned by GetFaceSearch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face_matches ⇒ Array<Types::FaceMatch>
Information about the faces in the input collection that match the face of a person in the video.
-
#person ⇒ Types::PersonDetail
Information about the matched person.
-
#timestamp ⇒ Integer
The time, in milliseconds from the beginning of the video, that the person was matched in the video.
Instance Attribute Details
#face_matches ⇒ Array<Types::FaceMatch>
Information about the faces in the input collection that match the face of a person in the video.
5716 5717 5718 5719 5720 5721 5722 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5716 class PersonMatch < Struct.new( :timestamp, :person, :face_matches) SENSITIVE = [] include Aws::Structure end |
#person ⇒ Types::PersonDetail
Information about the matched person.
5716 5717 5718 5719 5720 5721 5722 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5716 class PersonMatch < Struct.new( :timestamp, :person, :face_matches) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Integer
The time, in milliseconds from the beginning of the video, that the person was matched in the video.
5716 5717 5718 5719 5720 5721 5722 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5716 class PersonMatch < Struct.new( :timestamp, :person, :face_matches) SENSITIVE = [] include Aws::Structure end |