MBOcrChar
@interface MBOcrChar : NSObject
Class representing an individual OCR character obtained in the OCR process.
-
Unicode value of the char
Declaration
Objective-C
@property (assign, readwrite, 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 (assign, readwrite, nonatomic) MBPosition *_Nonnull position;Swift
var position: MBPosition { get set } -
Height of the char
Declaration
Objective-C
@property (assign, readwrite, nonatomic) CGFloat height;Swift
var height: CGFloat { get set } -
YES if char is uncertain
Declaration
Objective-C
@property (getter=isUncertain, assign, readwrite, nonatomic) BOOL uncertain;Swift
var isUncertain: Bool { get set } -
Integer value representing OCR quality of the char
Declaration
Objective-C
@property (assign, readwrite, nonatomic) NSInteger quality;Swift
var quality: Int { get set } -
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE; -
Initializer for a char
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(unichar)value position:(nonnull MBPosition *)position height:(CGFloat)height;Swift
init(value: unichar, position: MBPosition, height: CGFloat)Parameters
valueunicode value
positionposition on the image
heightheight of the char
Return Value
initialized char
View on GitHub
MBOcrChar Class Reference