[tesseract-ocr] Re: read other languages ​​by tesseract on c #

2017-03-23 Thread abdelaziz mokrani
plz can you send the code , i have the same problem ''Unable to load unicharset file C:\Program Files (x86)\Tesseract-OCR\\eng.unicharset '' Le mardi 4 octobre 2011 12:02:35 UTC+2, Alessandro Latella a écrit : > > Hi guys, I'm trying to run tesseract on c #. > The program works well on English l

Re: read other languages ​​by tesseract on c #

2011-10-26 Thread Alessandro Latella
I'm stupid, sorry for the simple error. Ok, the program works with the general language. Now I try to run the program with a language trained by me and this error occurs: "Error: Illegal malloc request size! Fatal error: No error trap defined! Signal_termination_handler called with signal 2001"

Re: read other languages ​​by tesseract on c #

2011-10-07 Thread Zdenko Podobný
If there is error message: Unable to load unicharset file C:\Program Files\Tesseract-OCR\ita.unicharset" than it means that your program expect language files (ita.*) in directory "C:\Program Files\Tesseract-OCR\" and not in "...\tessdata" Zdenko Dňa 07.10.2011 18:20, Alessandro Latella w

Re: read other languages ​​by tesseract on c #

2011-10-07 Thread Quan Nguyen
The error indicated the program was looking for the data files in C: \Program Files \Tesseract-OCR folder, not C:\Program Files \Tesseract-OCR\tessdata as you specified in your code. Can you try to determine why the discrepancy? You may want to take a look at VietOCR.NET 2.0x, which makes use of t

Re: read other languages ​​by tesseract on c #

2011-10-07 Thread Alessandro Latella
The error is "Unable to load unicharset file C:\Program Files \Tesseract-OCR\ita.unicharset", but in the directory ...\tessdata there are all the "ita." files. Yes the image work correctly with tesseract.exe On 5 Ott, 04:27, Quan Nguyen wrote: > What's the error exactly? Does the image work with

Re: read other languages ​​by tesseract on c #

2011-10-04 Thread Quan Nguyen
What's the error exactly? Does the image work with tesseract.exe? On Oct 4, 5:02 am, Alessandro Latella wrote: > Hi guys, I'm trying to run tesseract on c #. > The program works well on English language  'ocr.Init(@"C:\Program > Files\Tesseract-OCR\tessdata", "eng", false);' > If I try to change

read other languages ​​by tesseract on c #

2011-10-04 Thread Alessandro Latella
Hi guys, I'm trying to run tesseract on c #. The program works well on English language 'ocr.Init(@"C:\Program Files\Tesseract-OCR\tessdata", "eng", false);' If I try to change the language from "eng" to "ita", the program generates an error and does not work. I use the library tessnet2.dll . Tha