- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试按照这些步骤使用此 OCR http://tesseract.patagames.com/help/html/baa0aa10-7805-4ae6-b6e9-9df777c4678c.htm
我遇到一个未处理的异常说
An unhandled exception of type 'System.Exception' occurred in Patagames.Ocr.dll
Additional information: Unable to load DLL 'tesseract.dll': The specified module could not be found. Please make sure that you copy it to the application folder. Alternatively, you can specify the full path to the tesseract.dll file using specificPath parameter in the TessBaseAPICreate method
所以我按照一些说明指定了完整路径,但它仍然无法正常工作。
OcrApi.PathToEngine = @"d:\MyApp\tesseract.dll";
using (var api = OcrApi.Create())
{
api.Init();
}
还有其他方法可以实现吗?
最佳答案
来自文档:
在某些情况下,库初始化程序无法找到要加载的 tesseract.dll 库。这种情况的典型示例是 Web 应用程序。与经典应用程序不同,Web 应用程序在 IIS 工作目录中运行。因此,标准的 LoadLibrary 函数在加载过程中无法找到 dll。
在这种情况下,您必须通过此属性显式指定 tesseract.dll 文件的完整路径。
初始化算法如下:
http://tesseract.patagames.com/help/html/P_Patagames_Ocr_OcrApi_PathToEngine.htm
关于c# - 无法在 C# 中加载 DLL 'tesseract.dll',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34991569/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!