I referenced tessnet lib to my project and called following code..but it exists w/o any exception on Init call
var fd = new OpenFileDialog();
if (fd.ShowDialog() == DialogResult.OK)
{
var fileP = fd.FileName;
var bmp = new Bitmap(fileP);
var tessocr = new tessnet2.Tesseract();
tessocr.Init(@"C:\Downloads\TesseractApp\TessApp\bin\Debug\", "eng", false);
tessocr.GetThresholdedImage(bmp, Rectangle.Empty).Save("c:\\Downloads\\" + Guid.NewGuid() + ".bmp");
}
get the project from here http://ge.tt/5AqxgSN/v/0?c