• 大小: 2.06MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-08
  • 语言: Python
  • 标签: pytesser  python3.6  

资源简介

python3.6版本的可用pytesser,详细使用参考压缩包里的README/ Usage:章节

资源截图

代码片段和文件信息

“““Test for exceptions raised in the tesseract.exe logfile“““

class Tesser_General_Exception(Exception):
pass

class Tesser_Invalid_Filetype(Tesser_General_Exception):
pass

def check_for_errors(logfile = “tesseract.log“):
inf = file(logfile)
text = inf.read()
inf.close()
# All error conditions result in “Error“ somewhere in logfile
if text.find(“Error“) != -1:
raise Tesser_General_Exception(text)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        273  2007-05-06 00:11  pytesser_v0.0.1\AUTHORS

     文件         48  2007-05-06 00:22  pytesser_v0.0.1\ChangeLog

     文件        424  2018-03-09 23:55  pytesser_v0.0.1\errors.py

     文件       1410  2007-05-04 20:30  pytesser_v0.0.1\fnord.tif

     文件      20607  2007-05-04 20:49  pytesser_v0.0.1\fonts_test.png

     文件        558  2007-05-06 00:08  pytesser_v0.0.1\LICENSE

     文件        337  2007-05-06 00:17  pytesser_v0.0.1\NOTICE

     文件      38668  2006-06-16 19:17  pytesser_v0.0.1\phototest.tif

     文件       2631  2018-03-09 23:53  pytesser_v0.0.1\pytesser.py

     文件       2768  2018-03-10 00:37  pytesser_v0.0.1\README

     文件       2772  2006-06-17 01:18  pytesser_v0.0.1\tessdata\blackText.params

     文件       1012  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\api_config

     文件        760  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\api_resaljet

     文件        412  2006-06-30 20:56  pytesser_v0.0.1\tessdata\configs\box.train

     文件         97  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\inter

     文件        815  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\oldapi_config

     文件        816  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\oldbox.train

     文件       1785  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\variable_config

     文件       1068  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\var_api_config

     文件       1071  2006-06-17 01:17  pytesser_v0.0.1\tessdata\configs\var_box.train

     文件         12  2006-06-17 01:17  pytesser_v0.0.1\tessdata\confsets

     文件        235  2007-01-18 02:08  pytesser_v0.0.1\tessdata\DangAmbigs

     文件     132988  2006-06-17 01:17  pytesser_v0.0.1\tessdata\fmtable.cls

     文件        751  2006-06-17 01:17  pytesser_v0.0.1\tessdata\fnetwts

     文件        720  2006-06-17 01:17  pytesser_v0.0.1\tessdata\freq-dawg

     文件     676716  2006-06-17 01:17  pytesser_v0.0.1\tessdata\inttemp

     文件    1369167  2006-06-17 01:17  pytesser_v0.0.1\tessdata\netwts

     文件        561  2006-06-17 01:17  pytesser_v0.0.1\tessdata\newdiff.asccodes

     文件      39772  2006-06-17 01:17  pytesser_v0.0.1\tessdata\normproto

     文件        548  2006-06-17 01:17  pytesser_v0.0.1\tessdata\pffmtable

............此处省略22个文件信息

评论

共有 条评论