AWSRekognitionPersonDetail
Objective-C
@interface AWSRekognitionPersonDetail
Swift
class AWSRekognitionPersonDetail
Details about a person detected in a video analysis request.
-
Bounding box around the detected person.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionBoundingBox *_Nullable boundingBox;
Swift
var boundingBox: AWSRekognitionBoundingBox? { get set }
-
Face details for the detected person.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionFaceDetail *_Nullable face;
Swift
var face: AWSRekognitionFaceDetail? { get set }
-
Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable index;
Swift
var index: NSNumber? { get set }