在哪里可以找到可用于扫描和 OCR 文档的免费 .Net (C#) 库?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/10459013/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-09 13:58:01  来源:igfitidea点击:

Where can i find a free .Net (C#) library that i can use to scan and OCR documents?

c#.netopen-sourcedocumentocr

提问by RickardP

I seraching for a free .Net (C#) library that i can use to scan from a document scanner and then OCR the document so i can get the text from it to save in a database.

我搜索了一个免费的 .Net (C#) 库,我可以用它从文档扫描仪扫描,然后对文档进行 OCR,这样我就可以从中获取文本以保存在数据库中。

After some search i can not find anyone working in Visual Studio 2010 and .Net 4, someone knows any libs that works like this?

经过一番搜索,我找不到任何在 Visual Studio 2010 和 .Net 4 中工作的人,有人知道任何像这样工作的库吗?

采纳答案by nguyenq

You can use WIA library to control the scanning process and tesseractdotnetfor OCR. An updated .NET 4.0 version can be found here.

您可以使用 WIA 库来控制OCR的扫描过程和tesseractdotnet可以在此处找到更新的 .NET 4.0 版本

Updated link to .NET wrapper here

在此处更新了 .NET 包装器的链接

回答by Vinod