[tesseract-ocr] Re: tess4j error

2016-04-06 Thread Meir Julian
I delete all project and i used this 
http://www.softpedia.com/get/Programming/Components-Libraries/Tess4J.shtml#download



בתאריך יום חמישי, 7 באפריל 2016 בשעה 01:55:05 UTC+3, מאת Mostafa Sayed:
>
> Good (Y). 
>
> How you solved it, or where was the error ? 
>
> On Wednesday, April 6, 2016 at 11:00:59 PM UTC+2, Meir Julian wrote:
>>
>> Thank you for all!!  it's working!!
>>
>>
>>
>> בתאריך יום רביעי, 6 באפריל 2016 בשעה 20:14:37 UTC+3, מאת Mostafa Sayed:
>>>
>>> Put the "tessdata" folder in the project directory that contains " 
>>> .traineddata" files, also put the images that u want to scan them in the 
>>> project directory too.
>>>
>>> On Sunday, April 3, 2016 at 5:23:18 PM UTC+2, Meir Julian wrote:

 I'm trying to add tess4j to my java project in netbeans.
 I tried the 2 following guides: 
 http://tess4j.sourceforge.net/tutorial/

 http://tphangout.com/how-to-use-the-tesseract-api-to-perform-ocr-in-your-java-code/

 I'm getting an error: 

 Exception in thread "main" java.lang.UnsatisfiedLinkError: The 
 specified module could not be found.

 at com.sun.jna.Native.open(Native Method)
 at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:263)
 at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:403)
 at com.sun.jna.Library$Handler.(Library.java:147)
 at com.sun.jna.Native.loadLibrary(Native.java:502)
 at com.sun.jna.Native.loadLibrary(Native.java:481)
 at net.sourceforge.tess4j.TessAPI.(TessAPI.java:45)
 at net.sourceforge.tess4j.Tesseract.init(Tesseract.java:283)
 at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:219)
 at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:168)
 at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:152)
 at testocr.TestOcr.main(TestOcr.java:45)
 Java Result: 1

 I tried looking for a solution but without any success. 

 Does anyone have an idea?
 By the way, if you have any other idea for OCR beside tess4j that 
 compatible to java in windows, I'm open to suggestions (as long as there 
 is 
 a guide for that),

 Thank you! 

>>>

-- 
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/5c7169b9-2dee-4c3e-b9af-4937f57b2562%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: tess4j error

2016-04-06 Thread Mostafa Sayed
Good (Y). 

How you solved it, or where was the error ? 

On Wednesday, April 6, 2016 at 11:00:59 PM UTC+2, Meir Julian wrote:
>
> Thank you for all!!  it's working!!
>
>
>
> בתאריך יום רביעי, 6 באפריל 2016 בשעה 20:14:37 UTC+3, מאת Mostafa Sayed:
>>
>> Put the "tessdata" folder in the project directory that contains " 
>> .traineddata" files, also put the images that u want to scan them in the 
>> project directory too.
>>
>> On Sunday, April 3, 2016 at 5:23:18 PM UTC+2, Meir Julian wrote:
>>>
>>> I'm trying to add tess4j to my java project in netbeans.
>>> I tried the 2 following guides: 
>>> http://tess4j.sourceforge.net/tutorial/
>>>
>>> http://tphangout.com/how-to-use-the-tesseract-api-to-perform-ocr-in-your-java-code/
>>>
>>> I'm getting an error: 
>>>
>>> Exception in thread "main" java.lang.UnsatisfiedLinkError: The specified 
>>> module could not be found.
>>>
>>> at com.sun.jna.Native.open(Native Method)
>>> at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:263)
>>> at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:403)
>>> at com.sun.jna.Library$Handler.(Library.java:147)
>>> at com.sun.jna.Native.loadLibrary(Native.java:502)
>>> at com.sun.jna.Native.loadLibrary(Native.java:481)
>>> at net.sourceforge.tess4j.TessAPI.(TessAPI.java:45)
>>> at net.sourceforge.tess4j.Tesseract.init(Tesseract.java:283)
>>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:219)
>>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:168)
>>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:152)
>>> at testocr.TestOcr.main(TestOcr.java:45)
>>> Java Result: 1
>>>
>>> I tried looking for a solution but without any success. 
>>>
>>> Does anyone have an idea?
>>> By the way, if you have any other idea for OCR beside tess4j that 
>>> compatible to java in windows, I'm open to suggestions (as long as there is 
>>> a guide for that),
>>>
>>> Thank you! 
>>>
>>

-- 
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/27046ae3-93b9-4dc9-b216-2836aaf954bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: tess4j error

2016-04-06 Thread Meir Julian
Thank you for all!!  it's working!!



בתאריך יום רביעי, 6 באפריל 2016 בשעה 20:14:37 UTC+3, מאת Mostafa Sayed:
>
> Put the "tessdata" folder in the project directory that contains " 
> .traineddata" files, also put the images that u want to scan them in the 
> project directory too.
>
> On Sunday, April 3, 2016 at 5:23:18 PM UTC+2, Meir Julian wrote:
>>
>> I'm trying to add tess4j to my java project in netbeans.
>> I tried the 2 following guides: 
>> http://tess4j.sourceforge.net/tutorial/
>>
>> http://tphangout.com/how-to-use-the-tesseract-api-to-perform-ocr-in-your-java-code/
>>
>> I'm getting an error: 
>>
>> Exception in thread "main" java.lang.UnsatisfiedLinkError: The specified 
>> module could not be found.
>>
>> at com.sun.jna.Native.open(Native Method)
>> at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:263)
>> at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:403)
>> at com.sun.jna.Library$Handler.(Library.java:147)
>> at com.sun.jna.Native.loadLibrary(Native.java:502)
>> at com.sun.jna.Native.loadLibrary(Native.java:481)
>> at net.sourceforge.tess4j.TessAPI.(TessAPI.java:45)
>> at net.sourceforge.tess4j.Tesseract.init(Tesseract.java:283)
>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:219)
>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:168)
>> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:152)
>> at testocr.TestOcr.main(TestOcr.java:45)
>> Java Result: 1
>>
>> I tried looking for a solution but without any success. 
>>
>> Does anyone have an idea?
>> By the way, if you have any other idea for OCR beside tess4j that 
>> compatible to java in windows, I'm open to suggestions (as long as there is 
>> a guide for that),
>>
>> Thank you! 
>>
>

-- 
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/2138d6ee-2e16-4a14-ba42-44e3b716d96c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: tess4j error

2016-04-06 Thread Mostafa Sayed
Put the "tessdata" folder in the project directory that contains " 
.traineddata" files, also put the images that u want to scan them in the 
project directory too.

On Sunday, April 3, 2016 at 5:23:18 PM UTC+2, Meir Julian wrote:
>
> I'm trying to add tess4j to my java project in netbeans.
> I tried the 2 following guides: 
> http://tess4j.sourceforge.net/tutorial/
>
> http://tphangout.com/how-to-use-the-tesseract-api-to-perform-ocr-in-your-java-code/
>
> I'm getting an error: 
>
> Exception in thread "main" java.lang.UnsatisfiedLinkError: The specified 
> module could not be found.
>
> at com.sun.jna.Native.open(Native Method)
> at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:263)
> at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:403)
> at com.sun.jna.Library$Handler.(Library.java:147)
> at com.sun.jna.Native.loadLibrary(Native.java:502)
> at com.sun.jna.Native.loadLibrary(Native.java:481)
> at net.sourceforge.tess4j.TessAPI.(TessAPI.java:45)
> at net.sourceforge.tess4j.Tesseract.init(Tesseract.java:283)
> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:219)
> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:168)
> at net.sourceforge.tess4j.Tesseract.doOCR(Tesseract.java:152)
> at testocr.TestOcr.main(TestOcr.java:45)
> Java Result: 1
>
> I tried looking for a solution but without any success. 
>
> Does anyone have an idea?
> By the way, if you have any other idea for OCR beside tess4j that 
> compatible to java in windows, I'm open to suggestions (as long as there is 
> a guide for that),
>
> Thank you! 
>

-- 
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/59f4eba7-9cc7-4a7a-b447-5339360fa418%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Training Tesseract for identity card

2016-04-06 Thread ITS


Hello,

 

We are trying to train Tesseract 3.02 with jTessBoxEditor on Windows Server 
2012 R2 to improve recognition of identity cards.  You can see how images 
look on this link http://www.mup.hr/71.aspx. This is just an example image, 
our scanned images are 300DPI, 1010x635, B We have tried to train 
Tesseract with jTessBoxEditor and manually using Tesseract training tools. 


What we would like is to OCR only upper case letters. First we have created 
box files and then we have gone through all boxes and corrected all errors 
and managed to produce traineddata file. But, when we try to OCR the same 
images that we have used for training the result is far from good.


Is it possible to train Tesseract to improve OCR of identity cards? 

Any suggestions on how to train tesseract to improve OCR of identity cards.


Thanks

-- 
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/2f7cd719-30b3-4336-8b26-b3103dd89002%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tesseract-ocr] Re: Gujarati OCR

2016-04-06 Thread Tom Morris

On Wednesday, April 6, 2016 at 5:49:59 AM UTC-4, shree wrote:
>
> You can use tesseract with gujarati traineddata or try it with Vietocr GUI.
>

The language data is available here: 
https://github.com/tesseract-ocr/tessdata/blob/master/guj.traineddata

Tom

-- 
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/ff5839ee-fc9d-44a2-bb59-7d4d64117363%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: tess4j error

2016-04-06 Thread Quan Nguyen
The DLLs are to be extracted automatically to Temp folder during runtime -- 
you don't need to manually copy them.

You may want to put breakpoints in the source and trace through your 
program execution.

On Tuesday, April 5, 2016 at 11:28:25 PM UTC-5, Meir Julian wrote:
>
> Hi,
> I put this dll file too in source and Temp\tess4 folders
> Is there anything else?
>
> Thanks.
>
>
>
> בתאריך יום רביעי, 6 באפריל 2016 בשעה 00:34:09 UTC+3, מאת Quan Nguyen:
>>
>> Yes, there should also be liblept172.dll, extracted from lept4j-1.1.2.jar.
>>
>> On Monday, April 4, 2016 at 4:44:17 PM UTC-5, Meir Julian wrote:
>>>
>>> the two DLL files are there: libtesseract304.dll, gsdll64.dll.
>>>
>>> maybe something else?
>>>
>>> thanks
>>>
>>>
>>>
>>> בתאריך יום שני, 4 באפריל 2016 בשעה 23:59:58 UTC+3, מאת Quan Nguyen:

 Verify that the DLLs are extracted 
 to C:\Users\YourUserName\AppData\Local\Temp\tess4j folder to make sure 
 that 
 your system allows DLLs to be copied to system Temp directory.

 On Monday, April 4, 2016 at 7:20:15 AM UTC-5, Meir Julian wrote:
>
> hi,
> i have 3.1 version and installed the VC++
>


-- 
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/3923727f-ccc0-4f97-b883-a175ea4303a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tesseract-ocr] Re: Gujarati OCR

2016-04-06 Thread ShreeDevi Kumar
You can use tesseract with gujarati traineddata or try it with Vietocr GUI.

ShreeDevi

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

On Tue, Apr 5, 2016 at 11:16 PM, Pravin Kothari 
wrote:

> Does this Gujarati OCR exist today?  if so, please let us know where to
> find it, and how to install it on PC,.
> --Pravin
>
>
> On Monday, November 19, 2012 at 9:43:43 AM UTC-5, Sven Pedersen wrote:
>>
>> RKVS Raman is working on support for Gujarati:
>> http://code.google.com/p/parichit/
>>
>> --Sven
>>
>>
>> On Sun, Nov 18, 2012 at 11:30 PM, Jayant Solanki <
>> jayantkumarsola...@gmail.com> wrote:
>>
>>> Hi,
>>>
>>> I need Gujarati OCR. how can i get it? Please help...
>>>
>>> I really need it..
>>>
>>> --
>>> Solanki Jayant H.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "tesseract-ocr" group.
>>> To post to this group, send email to tesseract-ocr@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> tesseract-ocr+unsubscr...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/tesseract-ocr?hl=en
>>>
>>
>>
>>
>> --
>> ``All that is gold does not glitter,
>>   not all those who wander are lost;
>> the old that is strong does not wither,
>>   deep roots are not reached by the frost.
>> From the ashes a fire shall be woken,
>>   a light from the shadows shall spring;
>> renewed shall be blade that was broken,
>>   the crownless again shall be king.”
>>
> --
> 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/ac48b4f2-d2b7-49e3-9bbd-ad590c175592%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/CAG2NduUUcjE6NaX6Qnq8h4K8EOZZwDg9EFQMAAEzH2Kv9Ex2_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tesseract-ocr] Re: Gujarati OCR

2016-04-06 Thread Pravin Kothari
Does this Gujarati OCR exist today?  if so, please let us know where to 
find it, and how to install it on PC,.
--Pravin


On Monday, November 19, 2012 at 9:43:43 AM UTC-5, Sven Pedersen wrote:
>
> RKVS Raman is working on support for Gujarati:
> http://code.google.com/p/parichit/
>
> --Sven
>
>
> On Sun, Nov 18, 2012 at 11:30 PM, Jayant Solanki <
> jayantkumarsola...@gmail.com> wrote:
>
>> Hi,
>>
>> I need Gujarati OCR. how can i get it? Please help...
>>
>> I really need it..
>>
>> -- 
>> Solanki Jayant H.
>>
>> -- 
>> You received this message because you are subscribed to the Google
>> Groups "tesseract-ocr" group.
>> To post to this group, send email to tesseract-ocr@googlegroups.com
>> To unsubscribe from this group, send email to
>> tesseract-ocr+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/tesseract-ocr?hl=en
>>
>
>
>
> -- 
> ``All that is gold does not glitter,
>   not all those who wander are lost;
> the old that is strong does not wither,
>   deep roots are not reached by the frost.
> From the ashes a fire shall be woken,
>   a light from the shadows shall spring;
> renewed shall be blade that was broken,
>   the crownless again shall be king.”
>

-- 
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/ac48b4f2-d2b7-49e3-9bbd-ad590c175592%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.