AWSRekognitionGeneralLabelsSettings

Objective-C

@interface AWSRekognitionGeneralLabelsSettings

Swift

class AWSRekognitionGeneralLabelsSettings

Contains filters for the object labels returned by DetectLabels. Filters can be inclusive, exclusive, or a combination of both and can be applied to individual labels or entire label categories. To see a list of label categories, see Detecting Labels.

  • The label categories that should be excluded from the return from DetectLabels.

    Declaration

    Objective-C

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

    Swift

    var labelCategoryExclusionFilters: [String]? { get set }
  • The label categories that should be included in the return from DetectLabels.

    Declaration

    Objective-C

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

    Swift

    var labelCategoryInclusionFilters: [String]? { get set }
  • The labels that should be excluded from the return from DetectLabels.

    Declaration

    Objective-C

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

    Swift

    var labelExclusionFilters: [String]? { get set }
  • The labels that should be included in the return from DetectLabels.

    Declaration

    Objective-C

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

    Swift

    var labelInclusionFilters: [String]? { get set }