我正在尝试使用 Tesseract 在 Java 应用程序中具有 OCR 功能。为此,我使用了此处找到的 Java/Tesseract 桥。
pom.xml
依赖:
<dependency>
<groupId>org.bytedeco.javacpp-presets</groupId>
<artifactId>tesseract</artifactId>
<version>3.04-1.1</version>
</dependency>
它有效,我可以使用该库对图像进行 OCR 化。但是当 Java 程序完成时,JVM 崩溃了。举一个最小的例子,即使是第一个 Tesseract 初始化行就足够了:
import org.bytedeco.javacpp.tesseract.TessBaseAPI;
public class MinimalExample {
public static void main(String[] args) {
System.out.println("Hi!");
TessBaseAPI tessAPI = new TessBaseAPI();
}
}
如果我运行它main
,它会给出以下信息:
Hi!
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
以及以下错误消息:( Java(TM) Platform SE binary funktioniert nicht mehr – Windows kann online nach einer Lösung für das Problem suchen.
) Java(TM) Platform SE binary does not work anymore – Windows can look for a solution to this problem online
。
Problemsignatur:
Problemereignisname: APPCRASH
Anwendungsname: java.exe
Anwendungsversion: 8.0.650.17
Anwendungszeitstempel: 5614685f
Fehlermodulname: libgcc_s_dw2-1.dll
Fehlermodulversion: 0.0.0.0
Fehlermodulzeitstempel: 3f263ec2
Ausnahmecode: 40000015
Ausnahmeoffset: 000149a1
Betriebsystemversion: 6.1.7601.2.1.0.256.49
Gebietsschema-ID: 1031
Zusatzinformation 1: 7309
Zusatzinformation 2: 73092f5dbc78923c702ae5601110d2ea
Zusatzinformation 3: 9fa1
Zusatzinformation 4: 9fa11625863fb37077a4ab55be352b96
我以前从未遇到过 Java 崩溃——但我以前也从未使用过原生程序。;-) 有没有人暗示在哪里寻找这种奇怪行为的解决方案?
编辑 2015-12-07:使用ListDLLs,我看到有问题的 DLL 位于C:\Users\...\AppData\Local\Temp\javacpp3256864312633\libgcc_s_dw2-1.dll
,因此“来自错误%PATH%
的 DLL”不是答案。