Re: Deleting 'comments' from wiki pages

2012-11-30 Thread Nick White
On Fri, Nov 30, 2012 at 11:19:02AM -0800, Tom Morris wrote: > It's a problem that Google Code doesn't have a lightweight way to contribute > stuff to the wiki (which is one function that the comments can serve), but I'm > not sure what can be done about it. It is a pity, but in practice I don't se

Re: Tesseract OCR 3.02 .NET (TessNET2) library crashes in sample programs in ocr.Init(null, "eng", false);

2012-11-30 Thread eljainc
My mistake, It was the 2.0.4 version. I am still not sure where these English files should be. I have tried to put them into a temp location using ocr.Init("o:\\ocrtemp\\","eng",false); I have also tried to put them in the same folder as the executable (in the ..\bin\Debug folder) and still th

Re: Deleting 'comments' from wiki pages

2012-11-30 Thread Tom Morris
Nick, thanks for going through and reviewing the comments for useful info. On Thursday, November 29, 2012 1:47:20 PM UTC-5, Nick White wrote: > On Thu, Nov 29, 2012 at 07:16:05PM +0100, zdenko podobny wrote: > > What about to block posting comments on wiki (after its deletion)? > > It is more u

Re: tesseract api and user-words

2012-11-30 Thread zdenko podobny
I put this code to tesseract-ocr-API-Example-vs2008.zip : Pix *image; char *outText; char *configs[]={"myconfig"}; int configs_size = 1; TessBaseAPI *tess = new TessBaseAPI();

Re: Having problem to use Generic Vector

2012-11-30 Thread zdenko podobny
It looks like you have problem with linking library. I modified code of example (tesseract-ocr-API-Example-vs2008.zip) and code compiled ok for me (in VS 2008)... -- Zdenko On Wed, Nov 28, 2012

Re: cntraining-debug.exe problem in setup tesseract3.01 with visual studio 2010

2012-11-30 Thread Zdenko Podobný
On 30.11.2012 09:02, Iris wrote: I follow the step according to http://code.google.com/p/tesseract-ocr/wiki/ReadMePre3 I first install the windows installer then unpack the source code, win_vs libraries and language datafile. But when I compile the tesseract project uner visual studio 2010, a win

Re: tesseract api and user-words

2012-11-30 Thread John Williams
Not sure if this will help you or not, but setting the datapath in the Init function didn't work for me. I had to set it in the environment variable TESSDATA_PREFIX before initialization and everything worked fine. You might give that a shot... On Fri, Nov 30, 2012 at 7:04 AM, Matthias Hillert wro

Re: tesseract api and user-words

2012-11-30 Thread Matthias Hillert
i tried running the program in the console and did get the following error message: Could not open file, C:\tesseract-3.02\tessdata/deu.user-words The file is definitely there. Maybe it has something to do with the different slashes? Is the user-words file supposed to be a dawg file or a simple

cntraining-debug.exe problem in setup tesseract3.01 with visual studio 2010

2012-11-30 Thread Iris
I follow the step according to http://code.google.com/p/tesseract-ocr/wiki/ReadMePre3 I first install the windows installer then unpack the source code, win_vs libraries and language datafile. But when I compile the tesseract project uner visual studio 2010, a window pops up saying cntraing-deb

Re: Tesseract OCR 3.02 .NET (TessNET2) library crashes in sample programs in ocr.Init(null, "eng", false);

2012-11-30 Thread zdenko podobny
On Thu, Nov 29, 2012 at 10:04 PM, eljainc wrote: > Hello, I'm using the TessNet2 (.NET) library version 3.02 and I'm having > an issue in running my first ever program with Tesseract OCR. Can you be please more specific, what do you mean with "TessNet2 (.NET) library version 3.02" ? Last versio

Re: tesseract api and user-words

2012-11-30 Thread zdenko podobny
I guess there is problem to find deu.traineddata. I would suggest to run your program in console, so you can see possible error message (something like "Error opening data file C:\Program Files\Tesseract-OCR\tessdata/deu.traineddata"). Another option is to init tesseract and set variables in mor