SBSDKGenericTextLineRecognizerResultWordBox

@interface SBSDKGenericTextLineRecognizerResultWordBox
    : NSObject <SBSDKBoxedObject>

A class describing a recognized word, its bounding box and its text recognition confidence.

  • The recognized word.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull word;

    Swift

    var word: String { get set }
  • The recognized words bounding rect.

    Declaration

    Objective-C

    @property (nonatomic) CGRect boundingRect;

    Swift

    var boundingRect: CGRect { get set }
  • The recognized words confidence value.

    Declaration

    Objective-C

    @property (nonatomic) double confidenceValue;

    Swift

    var confidenceValue: Double { get set }