-2

I am trying to develop an OCR application in Java by using some external libraries e.g Tesseract but I don't know how to add the Tesseract libraries to my Java project so that I can work with the trained data in my java project.

I've already seen the Tess4J but I don't know how to provide a way to link it to my Java program and this is my main problem

Bob White
  • 733
  • 5
  • 20
Ebdulmomen1
  • 606
  • 1
  • 10
  • 21
  • 4
    Learn how to use a build system like grade or maven. Or simply download the required jar archives and add them to your classpath when compiling / running your code. There are zillions of tutorials that show you how how to do this. – GhostCat Jul 05 '19 at 19:17

1 Answers1

0

An easy way to get started with Tess4J is to get your sources from jar-download. It uses maven to compile the project and include all the dependencies. From there you can just follow this tutorial from the developer.

After that learning the API is a jungle. The best resource I can find is the documentation, and forums here and there.