MBIOcrChar
@interface MBIOcrChar : 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) MBIPosition *_Nonnull position;
Swift
var position: MBIPosition { 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) MBIOcrFont font;
Swift
var font: MBIOcrFont { get set }
-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE;
-
Initializer for a char
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(unichar)value position:(nonnull MBIPosition *)position height:(CGFloat)height;
Swift
init(value: unichar, position: MBIPosition, height: CGFloat)
Parameters
value
unicode value
position
position on the image
height
height of the char
Return Value
initialized char