[tesseract-ocr] build QT and Tesseract on Windows 10

2022-05-30 Thread Fish Money
Hello! How can i amend the pro file to make the program work? Googled a lot about QT and Tesseract, could not find a solution yet. QT += core QT -= gui CONFIG += c++11 TARGET = openCV CONFIG += console CONFIG -= app_bundle TEMPLATE = app INCLUDEPATH += C:\opencv\release\install\include LIBS

[tesseract-ocr] Tesseract v5 architecture

2022-05-30 Thread Giridharan Kumaravelu
I am looking to understand the architecture of OCR pipeline in tesseract v5.0.1 to know about *the preprocessing that happen before the LSTM network during inference and training*. I could only find these 7 year old documentation notes ( https://github.com/tesseract-ocr/docs/tree/main/das_tutor

[tesseract-ocr] QPixmap to Tesseract

2022-05-30 Thread Ahmad Anis
Hi, Just wanted to ask, can tesseract process(and work well) with QPixmap format, or should we do some changes in the format before passing it to tesseract. Thanks. -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this gro

Re: [tesseract-ocr] QPixmap to Tesseract

2022-05-30 Thread Zdenko Podobny
Tesseract uses leptonica for handling images and it uses Leptonica PIX format internally [1] E.g. You need to convert QPixmap/QImage to PIX. [1] https://github.com/DanBloomberg/leptonica/blob/master/src/pix.h Zdenko ut 31. 5. 2022 o 8:14 Ahmad Anis napĂ­sal(a): > Hi, Just wanted to ask, can te

Re: [tesseract-ocr] build QT and Tesseract on Windows 10

2022-05-30 Thread Zdenko Podobny
INCLUDEPATH += /usr/include/tesseract This does not seem correct on windows. error: tesseract/baseapi.h: No such file or directory So you have installed tesseract header files? You did not mention which compiler you used: "*.dll" indicates Visual studio, but what is in "C:\Program Files(x86)\Te