AWSRekognitionPersonDetection
Objective-C
@interface AWSRekognitionPersonDetection
Swift
class AWSRekognitionPersonDetection
Details and path tracking information for a single time a person’s path is tracked in a video. Amazon Rekognition operations that track people’s paths return an array of PersonDetection
objects with elements for each time a person’s path is tracked in a video.
For more information, see GetPersonTracking in the Amazon Rekognition Developer Guide.
-
Details about a person whose path was tracked in a video.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionPersonDetail *_Nullable person;
Swift
var person: AWSRekognitionPersonDetail? { get set }
-
The time, in milliseconds from the start of the video, that the person’s path was tracked. Note that
Timestamp
is not guaranteed to be accurate to the individual frame where the person’s path first appears.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable timestamp;
Swift
var timestamp: NSNumber? { get set }