Class EngineMode
Inheritance
System.Object
EngineMode
Assembly: IronOcr.dll
Syntax
public sealed class EngineMode : Enum
EngineMode selects which recognition engine the DynamicTesseract interop layer runs. Default lets the library choose the recommended path. LstmOnly runs only the modern neural LSTM engine, the usual choice for accuracy on printed text. TesseractAndLstm runs both the legacy and neural engines together, and TesseractOnly runs the legacy engine alone, kept for compatibility with older trained data. For everyday reading, IronOCR's high-level configuration is the simpler route; the advanced reading configuration how-to covers tuning the engine.
var mode = EngineMode.LstmOnly;
Fields
Default
Declaration
public const EngineMode Default
Field Value
LstmOnly
Declaration
public const EngineMode LstmOnly
Field Value
TesseractAndLstm
Declaration
public const EngineMode TesseractAndLstm
Field Value
TesseractOnly
Declaration
public const EngineMode TesseractOnly
Field Value
value__
Declaration
Field Value
| Type |
Description |
| System.Int32 |
|