Extract text from images?
-
save image // QImage::save(...)
call gocr // QProcess ...
read output // QProcess::readAll()
... -
Hi,
bq. I just want to know how to extract text from image(.jpg)
Could't get you exactly. Can you explain a bit more what you want to do ?
-
Hi,
It sounds like you want to use Optical Character Recognition (OCR) technology.
You can either launch an external OCR program like BlackDal suggested, or can integrate a 3rd-party OCR library (like "Tesseract":https://code.google.com/p/tesseract-ocr/) into your code.