Class: Aws::Rekognition::Types::PersonMatch

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#face_matchesArray<Types::FaceMatch>

Information about the faces in the input collection that match the face of a person in the video.

Returns:



5703
5704
5705
5706
5707
5708
5709
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5703

class PersonMatch < Struct.new(
  :timestamp,
  :person,
  :face_matches)
  SENSITIVE = []
  include Aws::Structure
end

#personTypes::PersonDetail

Information about the matched person.

Returns:



5703
5704
5705
5706
5707
5708
5709
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5703

class PersonMatch < Struct.new(
  :timestamp,
  :person,
  :face_matches)
  SENSITIVE = []
  include Aws::Structure
end

#timestampInteger

The time, in milliseconds from the beginning of the video, that the person was matched in the video.

Returns:

  • (Integer)


5703
5704
5705
5706
5707
5708
5709
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5703

class PersonMatch < Struct.new(
  :timestamp,
  :person,
  :face_matches)
  SENSITIVE = []
  include Aws::Structure
end