MBCOcrChar

Objective-C


@interface MBCOcrChar : NSObject

Swift

class MBCOcrChar : NSObject

Class representing an individual OCR character obtained in the OCR process.

  • Unicode value of the char

    Declaration

    Objective-C

    @property (nonatomic) unichar value;

    Swift

    var value: unichar { get set }
  • Position of the char on the image, in the coordinate system of the image

    Declaration

    Objective-C

    @property (nonatomic) MBCPosition *_Nonnull position;

    Swift

    var position: MBCPosition { get set }
  • Height of the char

    Declaration

    Objective-C

    @property (nonatomic) CGFloat height;

    Swift

    var height: CGFloat { get set }
  • YES if char is uncertain

    Declaration

    Objective-C

    @property (nonatomic, getter=isUncertain) BOOL uncertain;

    Swift

    var isUncertain: Bool { get set }
  • Integer value representing OCR quality of the char

    Declaration

    Objective-C

    @property (nonatomic) NSInteger quality;

    Swift

    var quality: Int { get set }
  • Font of the character

    Declaration

    Objective-C

    @property (nonatomic) MBCOcrFont font;

    Swift

    var font: MBCOcrFont { get set }
  • Initializer for a char

    Declaration

    Objective-C

    - (nonnull instancetype)initWithValue:(unichar)value
                                 position:(nonnull MBCPosition *)position
                                   height:(CGFloat)height;

    Swift

    init(value: unichar, position: MBCPosition, height: CGFloat)

    Parameters

    value

    unicode value

    position

    position on the image

    height

    height of the char

    Return Value

    initialized char