I am creating an OCR application in java using tess4j and this works on my windows machine. However, when migrating over to the raspbian machine that the application will be running on i got the error “Unable to load library 'tesseract': libtesseract.so” as its not found in the jars resource path.
I found this question relating to the same problem and saw it could be solved by using "sudo apt-get install tesseract-ocr" however when i tried this instead of solving the issue it causes the JVM machine to SIGSEGV and crash. Is there any other way i can solve this problem and obtain the libtesseract.so file?