AWSRekognitionConnectedHomeSettingsForUpdate

Objective-C

@interface AWSRekognitionConnectedHomeSettingsForUpdate

Swift

class AWSRekognitionConnectedHomeSettingsForUpdate

The label detection settings you want to use in your stream processor. This includes the labels you want the stream processor to detect and the minimum confidence level allowed to label objects.

  • Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: “PERSON”, “PET”, “PACKAGE”, and “ALL”.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable labels;

    Swift

    var labels: [String]? { get set }
  • The minimum confidence required to label an object in the video.

    Declaration

    Objective-C

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

    Swift

    var minConfidence: NSNumber? { get set }