AWSRekognitionLabelDetection

Objective-C

@interface AWSRekognitionLabelDetection

Swift

class AWSRekognitionLabelDetection

Information about a label detected in a video analysis request and the time the label was detected in the video.

  • The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.

    Declaration

    Objective-C

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

    Swift

    var durationMillis: NSNumber? { get set }
  • The time in milliseconds defining the end of the timeline segment containing a continuously detected label.

    Declaration

    Objective-C

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

    Swift

    var endTimestampMillis: NSNumber? { get set }
  • Details about the detected label.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionLabel *_Nullable label;

    Swift

    var label: AWSRekognitionLabel? { get set }
  • The time in milliseconds defining the start of the timeline segment containing a continuously detected label.

    Declaration

    Objective-C

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

    Swift

    var startTimestampMillis: NSNumber? { get set }
  • Time, in milliseconds from the start of the video, that the label was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the label first appears.

    Declaration

    Objective-C

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

    Swift

    var timestamp: NSNumber? { get set }