I want to use the Tesseract-OCR library with my already existing C++ project. I followed the steps mentioned in this answer.
build_tesseract.bat
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?
For anyone looking to use Tesseract-OCR with Visual Studio 2017+, I found an alternative method(Not exactly, It was straight to my face all along).
Using VcPkg seems to be the best and easiest way as mentioned in Tesseract-OCR documentation itself.
vcpkg install tesseract:x64-windows
. It might take 30 to 40 mins depending on your system