AWSRekognitionPersonMatch

Objective-C

@interface AWSRekognitionPersonMatch

Swift

class AWSRekognitionPersonMatch

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.

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSRekognitionFaceMatch *> *_Nullable faceMatches;

    Swift

    var faceMatches: [AWSRekognitionFaceMatch]? { get set }
  • Information about the matched person.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionPersonDetail *_Nullable person;

    Swift

    var person: AWSRekognitionPersonDetail? { get set }
  • The time, in milliseconds from the beginning of the video, that the person was matched in the video.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable timestamp;

    Swift

    var timestamp: NSNumber? { get set }