获得UnsatisfiedLinkError:没有jnilept中的java.library.path当我创建TessBaseAPI

问题描述 投票:6回答:1

我是新来的Java CPP和正方体-OCR。我坚持从几个小时的一个问题。我得到UnsatisfiedLinkError:没有jnilept中的java.library.path当我创建TessBaseAPI。下面是一段我的代码。

public static void tesseractForPdf(String filePath) throws Exception {
    BytePointer outText;

    TessBaseAPI api = new TessBaseAPI();//getting the UnsatisfiedLinkError exception here.
    // Initialize tesseract-ocr with English, without specifying tessdata path
    if (api.Init(".", "ENG") != 0) {
        System.err.println("Could not initialize tesseract.");
        System.exit(1);
    }

    // Open input image with leptonica library
    PIX image = pixRead(filePath);
    api.SetImage(image);
    // Get OCR result
    outText = api.GetUTF8Text();
    String string = outText.getString();
    System.out.println("OCR output:\n" + string);

    // Destroy used object and release memory
    api.End();
    outText.deallocate();
    pixDestroy(image);
}

除了我正在上TessBaseAPI API =新TessBaseAPI();线

Exception in thread "main" java.lang.UnsatisfiedLinkError: no jnilept in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:702)
at org.bytedeco.javacpp.Loader.load(Loader.java:500)
at org.bytedeco.javacpp.Loader.load(Loader.java:417)
at org.bytedeco.javacpp.lept.<clinit>(lept.java:10)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at org.bytedeco.javacpp.Loader.load(Loader.java:472)
at org.bytedeco.javacpp.Loader.load(Loader.java:417)
at org.bytedeco.javacpp.tesseract$TessBaseAPI.<clinit>(tesseract.java:3648)
at om.practiceproblems.BasicTesseractExampleTest.givenTessBaseApi_whenImageOcrd_thenTextDisplayed(BasicTesseractExampleTest.java:35)
at com.practiceproblems.BasicTesseractExampleTest.main(BasicTesseractExampleTest.java:22)
Caused by: java.lang.UnsatisfiedLinkError: no liblept in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:702)
at org.bytedeco.javacpp.Loader.load(Loader.java:491)
... 9 more

我使用Java的预置在我example.I库正方体,3.04.01-1.2和leptonica-1.73-1.2.jar与javacpp-1.2.1具有Windows操作系统。我没有看到SO和github上它指出的是itself.But我使用javacpp1.2这个问题是在jacacpp-1.1本https://github.com/bytedeco/javacpp-presets/issues/46和夫妇的讨论。 我真的很感激,在解决问题或找到根源任何帮助。

java ocr tesseract javacpp
1个回答
2
投票

你可以复制或下载项目:

https://github.com/bytedeco/javacpp-presets#the-cppbuildsh-scripts

然后构建模块:JavaCPP预设用于Leptonica超正方体和JavaCPP预置;

(打造你也许需要安装NASM https://www.nasm.us/的leptonica项目)

(来构建整个javacpp,预置项目还必须安装CMake)

这将创建本机库:

libjnilept.so和libjnitesseract.so

那么你必须指定jni.library.path

你可以这样做:

System.setProperty(JAVA_LIBRARY_PATH, tmpDirName);
/* Optionally add these two lines */
System.setProperty("jna.library.path", tmpDirName);
System.setProperty("jni.library.path", tmpDirName);
final Field fieldSysPath;

fieldSysPath = ClassLoader.class.getDeclaredField(SYS_PATHS);

fieldSysPath.setAccessible(true);
fieldSysPath.set(null, null);

(你可以改为指定-Djava.library.path =上的虚拟机选项)

你只需要把生成的文件:libjnilept.so和libjnitesseract.so在某些文件夹,并设置该路径为:jni.library.path

<dependency>
    <groupId>org.bytedeco.javacpp-presets</groupId>
    <artifactId>tesseract</artifactId>           
    <version>4.0.0-1.4.4</version>            
</dependency>

<dependency>
    <groupId>org.bytedeco.javacpp-presets</groupId>
    <artifactId>leptonica</artifactId>
    <version>1.77.0-1.4.4</version> 
</dependency>

你也可以尝试添加

<dependency>    
    <groupId>org.bytedeco.javacpp-presets</groupId>
    <artifactId>leptonica-platform</artifactId> 
    <version>1.77.0-1.4.4</version>
</dependency> 

<dependency>
    <groupId>org.bytedeco.javacpp-presets</groupId>
    <artifactId>tesseract-platform</artifactId>
    <version>4.0.0-1.4.4</version>
</dependency>

并加入到构建一个maven组件,插件

<build>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                         mainClass>fully.qualified.MainClass</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <!-- new -->
            <executions>
                <execution>
                    <id>make-assembly</id> 
                    <phase>package</phase> 
                    <goals>
                        <goal>single</goal> 
                    </goals>
                </execution>
            </executions>
        </plugin>   
</build>


此外,你也可以得到这样的错误:

sscanf(line, "%" QUOTED_TOKENSIZE "s %" QUOTED_TOKENSIZE "s %f %f",
linear_token, essential_token, &ParamDesc[i].Min, &ParamDesc[i].Max) == 4
:Error:Assert failed:in file clusttool.cpp, line 73
#
# A fatal error has been detected by the Java Runtime Environment:

由于正方体的语言环境要求,是出口LC_ALL = C运行任何客户端程序之前需要。

所以:

       <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.6.0</version>
            <executions>
                <execution>
                    <goals>
                        <goal>exec</goal>
                    </goals>
                </execution>
            </executions>
            <configuration> 
                <environmentVariables>  
                    <LC_ALL>C</LC_ALL>
                </environmentVariables>
                <executable>java</executable>
                <arguments>
                    <argument>-classpath</argument>
                    <classpath />
                    <argument>${classpath}</argument>
                </arguments>
            </configuration>
        </plugin> 

资源: - https://github.com/nguyenq/tess4j/issues/106 - https://github.com/sirfz/tesserocr/issues/165

© www.soinside.com 2019 - 2024. All rights reserved.