AWSRekognitionCompareFacesMatch

Objective-C

@interface AWSRekognitionCompareFacesMatch

Swift

class AWSRekognitionCompareFacesMatch

Provides information about a face in a target image that matches the source image face analyzed by CompareFaces. The Face property contains the bounding box of the face in the target image. The Similarity property is the confidence that the source image face matches the face in the bounding box.

  • Provides face metadata (bounding box and confidence that the bounding box actually contains a face).

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionComparedFace *_Nullable face;

    Swift

    var face: AWSRekognitionComparedFace? { get set }
  • Level of confidence that the faces match.

    Declaration

    Objective-C

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

    Swift

    var similarity: NSNumber? { get set }