AWSRekognitionCelebrity
Objective-C
@interface AWSRekognitionCelebrity
Swift
class AWSRekognitionCelebrity
Provides information about a celebrity recognized by the RecognizeCelebrities operation.
-
Provides information about the celebrity’s face, such as its location on the image.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionComparedFace *_Nullable face;
Swift
var face: AWSRekognitionComparedFace? { get set }
-
A unique identifier for the celebrity.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable identifier;
Swift
var identifier: String? { get set }
-
The known gender identity for the celebrity that matches the provided ID. The known gender identity can be Male, Female, Nonbinary, or Unlisted.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionKnownGender *_Nullable knownGender;
Swift
var knownGender: AWSRekognitionKnownGender? { get set }
-
The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable matchConfidence;
Swift
var matchConfidence: NSNumber? { get set }
-
The name of the celebrity.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
An array of URLs pointing to additional information about the celebrity. If there is no additional information about the celebrity, this list is empty.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable urls;
Swift
var urls: [String]? { get set }