首页 > 代码库 > 关于Tesseract3.01的使用方法
关于Tesseract3.01的使用方法
Tesseract就不多介绍勒,能找到的人都知道是干嘛的
下面记录一下C# vs2010下的使用方法(借鉴http://blog.csdn.net/bobo1013767522/article/details/17894997)
首先需要两个东西
1.tesseractengine3.dll 此处 下载
2.语言包(字典) 此处 为英文语言库
1 using tesseract; 2 TesseractProcessor m_tesseract = new TesseractProcessor(); 3 string m_path = Application.StartupPath + @"\tessdata\"; 4 string m_lang = "eng"; 5 //初始化 6 bool isSucceed = m_tesseract.Init(m_path, m_lang, (int)TesseractEngineMode.TESSERACT_ONLY); 7 m_tesseract.SetVariable("tessedit_char_whitelist", "0123456789"); 8 //m_tesseract.SetVariable("tessedit_pageseg_mode", TesseractPageSegMode.PSM_AUTO.ToString()); 9 //m_tesseract.SetVariable("tessedit_char_whitelist", "0123456789ABCDEFGHIJKLMNOPQLSTUVWXYZ"); 10 11 m_tesseract.Clear(); 12 m_tesseract.ClearAdaptiveClassifier(); 13 14 string result = m_tesseract.Apply("ValidateCode.bmp");
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。