And my congratulation to you: more than 2^18 views

I removed the runtimes libraries from the Interface because in the latest versions of Windows they're already included.acreis wrote:May I suggest you link statically c runtimes libraries? This should improve portability.
Code: Select all
hAPI = TesseractInit(#PSM_AUTO, #OEM_TESSERACT_ONLY, #PB_Compiler_FilePath + "binaries/tesseract/tessdata", "eng", #Null$)
Thanks. This version, however, for my language (Croatian) is almost 4 times (~4MB) smaller than latest (~18MB).JHPJHP wrote:Hi bbanelli,
a. See the following post: http://www.purebasic.fr/english/viewtop ... 27#p518127
Can I send it on your PM?b. Please post a link to a test JPG / PDF that produces the inaccurate results
It seems that Tesseract is quite mature now; I will make sure to post my own code if relevant so I can add to community since I plan to embed this engine to larger scale software of mine...NB*: At some point I will probably update the packages with the latest version of the Tesseract binaries.
That's great, there has been some interest in the past few months concerning the OCR examples in conjunction with newer binaries.AAT wrote:I upgraded the package of Tesseract OCR libraries to version 3.5.1.
Code: Select all
polib libtesseract-3.dll /machine:ix86 /out:libtesseract-3.lib
polib liblept-5.dll /machine:ix86 /out:liblept-5.lib
polib libgif-4.dll /machine:ix86 /out:libgif-4.lib
polib libpng16-16.dll /machine:ix86 /out:libpng16-16.lib
polib libjpeg-8.dll /machine:ix86 /out:libjpeg-8.lib
polib libopenjp2.dll /machine:ix86 /out:libopenjp2.lib
polib zlib1.dll /machine:ix86 /out:zlib1.lib
polib libtiff-5.dll /machine:ix86 /out:libtiff-5.lib
polib libjbig-2.dll /machine:ix86 /out:libjbig-2.lib
polib liblzma-5.dll /machine:ix86 /out:liblzma-5.lib
polib libwebp-5.dll /machine:ix86 /out:libwebp-5.lib
polib libstdc++-6.dll /machine:ix86 /out:libstdc++-6.lib
Code: Select all
cvCreateFileCaptureWithPreference(filename.p-ascii, apiPreference)
cvGetWindowImageRect(name.p-ascii)
cvSetTrackbarMin(trackbar_name.p-ascii, window_name.p-ascii, minval)
cvWriteRawDataBase64(*fs, *src, len, dt.p-ascii)