Hi, Yes Tessenet2 works and you can check it with the C# project included.
64 Bit plateform (i.e. Windows) can run 64 or 32 bit executable. 32 Bit plateform can only run 32 bit executable. .NET project are compile on the fly (JIT) when you start it. .NET detect the plateform you are on and choose 32 bit version on Windows 32 and 64 bit version on Windows 64. Tessnet2 is a C++/CLI wrapper, it means the code is not JIT but compile by Visual Studio. That why I give 32 and 64 bit version. Because the CLR can't choose the correct Tessnet2 version (32 or 64 bit) on early binded assembly you must set the correct platform target on the project build property. This option force the 32 or 64 bit JIT engine. http://stackoverflow.com/questions/95635/what-does-a-just-in-time-jit-compiler-do http://social.msdn.microsoft.com/Forums/en-US/netfx64bit/thread/dec42b0e-c532-492d-a689-12b237b73c73 Remi On Aug 18, 1:45 am, SteveP <[email protected]> wrote: > I just downloaded the latest version of tessnet2. It looks like Remi > Thomas added support for 64-bit executables. When I rebuild it from > source, by default it is giving me 64-bit executables. When I run > them I get "TesseractOCR.exe is not a valid Win32 application". (I > have little experience with 64-bit applications. I'll ask Remi Thomas > if he has any comment.) Do you get this message too? > > If so, try downloading the binaries, copying the Release32 files > (exes, ...) into the tesseract-2.04 folder, and try running them. > > On Aug 17, 11:32 am, Mariusz Matula <[email protected]> wrote: > > > > > it was in my case :-) I agree. However still I do not know from the > > documentation what methods I can really use in .NET. it should be listed > > somewhere. That is my first open source project ;-) > > > 2009/8/17 SteveP <[email protected]> > > > > I think the people in the forum that have tried tessnet2 found that it > > > did work. It works for me. The forum recommends that you include > > > details on what environment you are running in, what errors or > > > unexpected results you see. > > > > Tesseract is powerful and somewhat complicated and not as easy to use > > > as some simpler packages. If you are doing a project for a class and > > > do not need all of the power of tesseract, you might find you get > > > results faster with a simpler package like ocrad. I do not want to > > > discourage you from using tesseract, though. If you keep at it and > > > keep asking questions, I bet you will get it to work. It usually > > > takes a few tries for most of us. :) > > > > On Aug 12, 8:18 am, Mariusz Matula <[email protected]> wrote: > > > > Hi, > > > > > I am new on forum. I would like to ask if there is availble a kind of > > > > solution using tesseract ocr with C# .NET. I found this: > > >http://www.pixel-technology.com/freeware/tessnet2/butitseems it > > > > does not work. I am student and I need to develop OCR application. It > > > > would be nice if there is something written in Java at least under > > > > .NET. > > > > > Regards, > > > > Mariusz Matula.- Hide quoted text - > > > - Show quoted text -- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en -~----------~----~----~----~------~----~------~--~---

