I want to use the Tesseract-OCR library with my already existing C++ project. I followed the steps mentioned in this answer.
- I cloned the Github repo from here
- Ran the
build_tesseract.bat
- Opened 'tesseract.sln' and set 'tesseract' as startup project before compiling it for both 'release' and 'debug' configurations
- After successful compilation, under the folder 'debug' and 'release', I have a list of .lib files
Now I don't know how to move forward from here. I am used to adding libraries that have 'include' directories. Here, I am not able to find such directories except the .lib files for both 'debug' and 'release' configuration.
Can someone point me to how to use these files to add the 'tesseract-OCR' API to my existing project?