Re: [tesseract-ocr] Re: tesseract4 x64 Windows dlls?

2017-03-15 Thread ShreeDevi Kumar
Thanks for sharing how you made the x64 solution for Visual Studio.

ShreeDevi

भजन - कीर्तन - आरती @ http://bhajans.ramparivar.com

On Wed, Mar 15, 2017 at 9:44 PM, THintz  wrote:

> I follow the github instructions tesseract-ocr/tesseract/wiki/Compiling,
> then opened the resulting .sln file's Configuration Manager... and created
> an x64 clone of Win32 platform.  Then opened every project an copied the
> Win32 platform settings to x64 platform while leaving the explicate x64
> paths alone.  This compiled on Visual Studio 2017.
>
> --
> You received this message because you are subscribed to the Google Groups
> "tesseract-ocr" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tesseract-ocr+unsubscr...@googlegroups.com.
> To post to this group, send email to tesseract-ocr@googlegroups.com.
> Visit this group at https://groups.google.com/group/tesseract-ocr.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/tesseract-ocr/ffb9a0b6-badc-4465-9fe0-448b65c9ebf6%
> 40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/CAG2NduVM6kKHD95BhSOWM_HM6zjfsFQF9Wx4Q4ha6OWckAenpw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tesseract-ocr] Compilation problem for tesseract 4.00.00

2017-03-15 Thread Zdenko Podobný
It seems that your (leptonica?) installation is corrupted. Your example
works for me (for 4.00 and 3.05):

zdeno@level2:~/test> g++ sample.cpp -o sample -llept -ltesseract
zdeno@level2:~/test> ./sample
Tesseract-ocr version: 4.00.00alpha
Leptonica version: leptonica-1.74


Zdenko

On Wed, Mar 15, 2017 at 4:28 PM, Kazi Moinul Hossain 
wrote:

> Hi everyone,
>
> I have installed leptonica 1.74.1 and then tesseract 4.00.00.
> After that, i have created a C++ program stated below which ultimately
> will show the leptonica and tesseract version installed in the system.
>
>
>
> *#include
> #include#include
> *
>
> *int main() {*
>
>
>
>
>
> *tesseract::TessBaseAPI *myOCR = new
> tesseract::TessBaseAPI();printf("Tesseract-ocr version:
> %s\n",myOCR->Version());printf("Leptonica version:
> %s\n",getLeptonicaVersion());return 0;}*
>
> While compiling my code using following command
>
>
> *$ g++ sample.cpp -o
> sample -I/usr/local/include/leptonica -I/usr/local/include/tesseract -llept
> -ltesseract*
>
> i am encountering following error,
>
> *//usr/local/lib/libtesseract.so: undefined reference to
> ‘pixReadFromMultipageTiff ‘*
> *//usr/local/lib/libtesseract.so: undefined reference to
> ‘pixReadMemFromMultipageTiff ‘*
> *collect2: error: Id returned 1 exit status*
>
> Again to mention, my tesseract version is 4.00.00 and leptonica version is
> 1.74.1.
> Can anyone please help me to figure it out?
>
> Thanks,
> Kazi Moinul Hossain
> Junior Software Developer
>
> --
> You received this message because you are subscribed to the Google Groups
> "tesseract-ocr" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tesseract-ocr+unsubscr...@googlegroups.com.
> To post to this group, send email to tesseract-ocr@googlegroups.com.
> Visit this group at https://groups.google.com/group/tesseract-ocr.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/tesseract-ocr/be3b1def-f666-446a-ad16-211b4e3a8523%
> 40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/CAJbzG8xM%3Ds8WbFh1W2PWrhZK%2BBQ91edYawEEc%3DFYikCJWNGcHg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: tesseract4 x64 Windows dlls?

2017-03-15 Thread THintz
I follow the github instructions tesseract-ocr/tesseract/wiki/Compiling, 
then opened the resulting .sln file's Configuration Manager... and created 
an x64 clone of Win32 platform.  Then opened every project an copied the 
Win32 platform settings to x64 platform while leaving the explicate x64 
paths alone.  This compiled on Visual Studio 2017.

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/ffb9a0b6-badc-4465-9fe0-448b65c9ebf6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Compilation problem for tesseract 4.00.00

2017-03-15 Thread Kazi Moinul Hossain
Hi everyone,

I have installed leptonica 1.74.1 and then tesseract 4.00.00.
After that, i have created a C++ program stated below which ultimately will 
show the leptonica and tesseract version installed in the system.



*#include 
#include#include
 
*

*int main() {*





*tesseract::TessBaseAPI *myOCR = new 
tesseract::TessBaseAPI();printf("Tesseract-ocr version: 
%s\n",myOCR->Version());printf("Leptonica version: 
%s\n",getLeptonicaVersion());return 0;}*

While compiling my code using following command


*$ g++ sample.cpp -o 
sample -I/usr/local/include/leptonica -I/usr/local/include/tesseract -llept 
-ltesseract*

i am encountering following error,

*//usr/local/lib/libtesseract.so: undefined reference to 
‘pixReadFromMultipageTiff ‘*
*//usr/local/lib/libtesseract.so: undefined reference to 
‘pixReadMemFromMultipageTiff ‘*
*collect2: error: Id returned 1 exit status*

Again to mention, my tesseract version is 4.00.00 and leptonica version is 
1.74.1.
Can anyone please help me to figure it out?

Thanks,
Kazi Moinul Hossain
Junior Software Developer

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/be3b1def-f666-446a-ad16-211b4e3a8523%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: speed of tesseract OCR

2017-03-15 Thread Manu
Probably this is what you are looking for.

https://groups.google.com/forum/#!topic/tesseract-dev/LErriuT-sck

On Thursday, 9 March 2017 09:06:20 UTC+1, vngo...@mail.ru wrote:
>
> Hi all!
>
> It is very interesting for me if someone had any tests with different CPU, 
> memorry e.t.c
> Is it real to make tesseract recognize a difficult image(small font, 
> tables, dirty image) less then 1 second.
> If real then what I need to use for the best result?
>
> Thank you.
>
>
>
-- 
DISCLAIMER:
La información contenida en este mensaje puede ser de uso interno o 
confidencial. Si al revisarla usted entiende que no es el destinatario, no 
puede copiar o distribuir el mensaje a nadie, debe destruirlo y notificar 
tal hecho al emisor. Las opiniones o cualquier otra información contenida, 
no relacionada con el negocio de Input For You no debe considerarse como 
emitida ni aprobada por el mismo.

This information is intended to be confidential and for the exclusive use 
of the individual or entity named above only . If you are not the intended 
recipient, be aware that retention, dissemination, distribution or copying 
of this message is strictly prohibited. If you received it by mistake, 
please notify the sender immediately and return it to the address above. 
The opinions and views expressed and any other information contained in 
this message which are not directly related to the businesses of Input for 
You are not to be considered as disclosed, shared nor approved by it.

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/aa21734c-8183-407c-9037-7b5f94628bf7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] tesseract4 x64 Windows dlls?

2017-03-15 Thread THintz
The current master only builds Win32. Are there x64 builds or build 
processes available for tesseract4?

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To post to this group, send email to tesseract-ocr@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/f3cc07a3-ef5a-4485-be06-d6614cf25880%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.