附件中是一个非常简单的OCR演示程序,展示了使用LEADTOOLS进行文字识别的简单性。 使用C#语言和LEADTOOLS V19开发包
相关代码如下:
- private void DoOCR(string inputFile, string outputFile, DocumentFormat format)
- {
- using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, false))
- {
- ocrEngine.Startup(null, null, null, null);
- ocrEngine.AutoRecognizeManager.Run(inputFile, outputFile, format, null, null);
- }
- }
复制代码
程序运行时的界面
|