tess4j
🍎识别结果为 4043
🍎识别结果为 8505
- 引入
<!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
<dependency>
<groupId>net.sourceforge.tess4j</groupId>
<artifactId>tess4j</artifactId>
<version>4.5.3</version>
</dependency>
- Please make sure the TESSDATA_PREFIX environment variable is set to your "tessdata" directory.
ITesseract instance = new Tesseract(); // JNA Interface Mapping
//In case you don't have your own tessdata, let it also be extracted for you
File tessDataFolder = LoadLibs.extractTessResources(DEST);
//Set the tessdata path
instance.setDatapath(tessDataFolder.getAbsolutePath());