[tesseract-ocr] is there any way to extract underlined text from image?

2020-10-15 Thread Mitesh Gabani
i want to extract underlined text from image using tesseract. please suggest if there is any way to detect underlined text from image. -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails

Re: [tesseract-ocr] error: shared library version mismatch

2020-10-15 Thread Eric Ihli
I know this message is old but I wanted to chime in with an with a bit more of a specific answer so that if anyone else came across this thread they wouldn't be stuck. TLDR: Training requires tesseract and unicharset_extractor to be the same version. If you update one without updating the

[tesseract-ocr] Building go binding inside Termux (Android ARM)

2020-10-15 Thread Ronoaldo Pereira
Hi! I am trying to build a small utility using tesseract from a Go program, and instead of calling a subprocess and initializing the OCR engine every time I plan to run the OCR from a Go routine. I have this small code that uses a binding to tesseract: $ cat main.go package main import (

[tesseract-ocr] Re: Building go binding inside Termux (Android ARM)

2020-10-15 Thread Ronoaldo Pereira
When testing the code on PC there were errors in the Go code, but they are unrelated to the build errors from libtesseract.so: ``` package main import ( "io/ioutil" "os" "fmt" "log" "github.com/otiai10/gosseract" ) func main() { client :=