Spring Boot 配置 tess4j

titan_st發表於2020-04-06

沒有用最新版本tess4j用了3.4.7

使用maven在pom.xml中新增dependency

<dependency>
    <groupId>net.sourceforge.tess4j</groupId>
    <artifactId>tess4j</artifactId>
    <version>3.4.7</version>

</dependency>

tessdata目錄中有需要的訓練資料,但是似乎只能指定絕對路徑,或者設定環境變數。打包在jar中好像訪問不到。

程式碼中通過以下程式碼來設定路徑

Tesseract instance = new Tesseract();

instance.setDatapath(“D:/”);

instance.doOCR(imageFile);


相關文章