1

在我的 Java 应用程序中,我想从图像中提取文本。我下载了Google 的 Tesseract OCR并将其安装在我的 Windows XP 机器上。我按照教程Tess4J - JNA wrapper for Tesseract 进行操作,不幸的是出现了这个错误:

Exception in thread "main" java.lang.UnsatisfiedLinkError: The specified module could not be found.

at com.sun.jna.Native.open(Native Method)
at com.sun.jna.Native.open(Native.java:1759)
at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:260)
at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:398)
at com.sun.jna.Library$Handler.<init>(Library.java:147)
at com.sun.jna.Native.loadLibrary(Native.java:412)
at com.sun.jna.Native.loadLibrary(Native.java:391)
at net.sourceforge.tess4j.util.LoadLibs.getTessAPIInstance(LoadLibs.java:78)
at net.sourceforge.tess4j.TessAPI.<clinit>(TessAPI.java:40)
at net.sourceforge.tess4j.Tesseract.init(Tesseract.java:360)
at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:273)
at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:205)
at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:189)
at ocr.Main.main(Main.java:13)
Java Result: 1

我在StackOverFlow中发现了类似的问题,但似乎没有任何效果。我希望你能帮我解决这个问题!

这是我在 Netbeans IDE 7.2 中的项目结构:

在此处输入图像描述

4

2 回答 2

1

看起来像 tesseract 使用 JNA ...尝试从这里添加它的 jar https://github.com/twall/jna

于 2015-06-09T02:58:27.173 回答
0

我正在使用 64 位版本的 dll

库\win32-x64

文件夹

  1. API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
  2. api-ms-win-core-privateprofile-l1-1-1.dll
  3. api-ms-win-service-private-l1-1-1.dll
  4. gsdll64.dll
  5. liblept1741.dll
  6. libtesseract3051.dll

需要 Microsoft Visual C++ 2015 Redistributable x64 (vc_redist.x64.exe)。

于 2017-08-29T12:58:18.653 回答