AWSRekognitionDetectionFilter

Objective-C

@interface AWSRekognitionDetectionFilter

Swift

class AWSRekognitionDetectionFilter

A set of parameters that allow you to filter out certain results from your returned results.

  • Sets the minimum height of the word bounding box. Words with bounding box heights lesser than this value will be excluded from the result. Value is relative to the video frame height.

    Declaration

    Objective-C

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

    Swift

    var minBoundingBoxHeight: NSNumber? { get set }
  • Sets the minimum width of the word bounding box. Words with bounding boxes widths lesser than this value will be excluded from the result. Value is relative to the video frame width.

    Declaration

    Objective-C

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

    Swift

    var minBoundingBoxWidth: NSNumber? { get set }
  • Sets the confidence of word detection. Words with detection confidence below this will be excluded from the result. Values should be between 0 and 100. The default MinConfidence is 80.

    Declaration

    Objective-C

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

    Swift

    var minConfidence: NSNumber? { get set }