ocr_engine_mode
Objective-C
NS_ENUM(int, ocr_engine_mode) {
OEM_TESSERACT_ONLY = 0,
OEM_CUBE_ONLY = 1,
OEM_TESSERACT_CUBE_COMBINED = 2,
OEM_DEFAULT = 3
}
Swift
enum ocr_engine_mode : Int32
-
Declaration
Objective-C
OEM_TESSERACT_ONLY = 0
Swift
case OEM_TESSERACT_ONLY = 0
-
Declaration
Objective-C
OEM_CUBE_ONLY = 1
Swift
case OEM_CUBE_ONLY = 1
-
Declaration
Objective-C
OEM_TESSERACT_CUBE_COMBINED = 2
Swift
case OEM_TESSERACT_CUBE_COMBINED = 2
-
Declaration
Objective-C
OEM_DEFAULT = 3
Swift
case OEM_DEFAULT = 3