OcrEngineMode Enumeration |
http://www.emgu.com
When Tesseract/Cube is initialized we can choose to instantiate/load/run
only the Tesseract part, only the Cube part or both along with the combiner.
The preference of which engine to use is stored in tessedit_ocr_engine_mode.
Namespace: Emgu.CV.OCRAssembly: Emgu.CV.OCR (in Emgu.CV.OCR.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic enum OcrEngineMode
Public Enumeration OcrEngineMode
public enum class OcrEngineMode
Members
| Member name | Value | Description |
---|
| TesseractOnly | 0 |
Run Tesseract only - fastest
|
| CubeOnly | 1 |
Run Cube only - better accuracy, but slower
|
| TesseractCubeCombined | 2 |
Run both and combine results - best accuracy
|
| Default | 3 |
Specify this mode to indicate that any of the above modes
should be automatically inferred from the variables in the
language-specific config, or if not specified in any of
the above should be set to the default OEM_TESSERACT_ONLY.
|
See Also