├── .gitignore ├── README.md ├── app.py ├── config.py ├── dataset ├── images │ ├── 123.jpg │ ├── ─■A0C93F.jpg │ ├── ─■A1D775.jpg │ ├── ─■A1K002.jpg │ ├── ─■A1Q070.jpg │ ├── ─■A3J484.jpg │ ├── ─■A3Q779.jpg │ ├── ─■A4H981.jpg │ └── ─■A6H335.jpg └── labels │ ├── data.mdb │ └── lock.mdb ├── enviroment.yaml ├── logger_manager.py ├── models ├── __init__.py └── user.py ├── requirement.txt ├── static ├── build │ ├── css │ │ ├── custom.css │ │ └── imagelabel.css │ ├── images │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ └── loading.gif │ └── js │ │ ├── bootstrap-3.3.7 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── custom.js │ │ ├── draw_roi.js │ │ ├── laydate-v5.0.9 │ │ ├── laydate.js │ │ └── theme │ │ │ └── default │ │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ │ └── laydate.css │ │ └── layer-v3.1.1 │ │ └── layer │ │ ├── layer.js │ │ ├── mobile │ │ ├── layer.js │ │ └── need │ │ │ └── layer.css │ │ └── theme │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif ├── images │ ├── american-express.png │ ├── cropper.jpg │ ├── favicon.ico │ ├── img.jpg │ ├── inbox.png │ ├── logo-simple.png │ ├── logo.png │ ├── mastercard.png │ ├── media.jpg │ ├── paypal.png │ ├── picture.jpg │ ├── user.png │ └── visa.png └── layer │ ├── layer.js │ ├── mobile │ ├── layer.js │ └── need │ │ └── layer.css │ └── theme │ └── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif ├── templates ├── index.html └── test.html └── utils ├── __init__.py ├── db_helper.py ├── tool.py └── xml2dict.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/config.py -------------------------------------------------------------------------------- /dataset/images/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/123.jpg -------------------------------------------------------------------------------- /dataset/images/─■A0C93F.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A0C93F.jpg -------------------------------------------------------------------------------- /dataset/images/─■A1D775.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A1D775.jpg -------------------------------------------------------------------------------- /dataset/images/─■A1K002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A1K002.jpg -------------------------------------------------------------------------------- /dataset/images/─■A1Q070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A1Q070.jpg -------------------------------------------------------------------------------- /dataset/images/─■A3J484.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A3J484.jpg -------------------------------------------------------------------------------- /dataset/images/─■A3Q779.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A3Q779.jpg -------------------------------------------------------------------------------- /dataset/images/─■A4H981.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A4H981.jpg -------------------------------------------------------------------------------- /dataset/images/─■A6H335.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/images/─■A6H335.jpg -------------------------------------------------------------------------------- /dataset/labels/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/labels/data.mdb -------------------------------------------------------------------------------- /dataset/labels/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/dataset/labels/lock.mdb -------------------------------------------------------------------------------- /enviroment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/enviroment.yaml -------------------------------------------------------------------------------- /logger_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/logger_manager.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/models/user.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/requirement.txt -------------------------------------------------------------------------------- /static/build/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/css/custom.css -------------------------------------------------------------------------------- /static/build/css/imagelabel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/css/imagelabel.css -------------------------------------------------------------------------------- /static/build/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/back_disabled.png -------------------------------------------------------------------------------- /static/build/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/back_enabled.png -------------------------------------------------------------------------------- /static/build/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/back_enabled_hover.png -------------------------------------------------------------------------------- /static/build/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/forward_disabled.png -------------------------------------------------------------------------------- /static/build/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/forward_enabled.png -------------------------------------------------------------------------------- /static/build/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /static/build/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/images/loading.gif -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap.css -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/js/bootstrap.js -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/build/js/bootstrap-3.3.7/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/bootstrap-3.3.7/js/npm.js -------------------------------------------------------------------------------- /static/build/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/custom.js -------------------------------------------------------------------------------- /static/build/js/draw_roi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/draw_roi.js -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/laydate.js -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/theme/default/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/theme/default/font/iconfont.eot -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/theme/default/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/theme/default/font/iconfont.svg -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/theme/default/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/theme/default/font/iconfont.ttf -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/theme/default/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/theme/default/font/iconfont.woff -------------------------------------------------------------------------------- /static/build/js/laydate-v5.0.9/theme/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/laydate-v5.0.9/theme/default/laydate.css -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/layer.js -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/mobile/layer.js -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/layer.css -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /static/build/js/layer-v3.1.1/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/build/js/layer-v3.1.1/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /static/images/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/american-express.png -------------------------------------------------------------------------------- /static/images/cropper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/cropper.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/img.jpg -------------------------------------------------------------------------------- /static/images/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/inbox.png -------------------------------------------------------------------------------- /static/images/logo-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/logo-simple.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/mastercard.png -------------------------------------------------------------------------------- /static/images/media.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/media.jpg -------------------------------------------------------------------------------- /static/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/paypal.png -------------------------------------------------------------------------------- /static/images/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/picture.jpg -------------------------------------------------------------------------------- /static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/user.png -------------------------------------------------------------------------------- /static/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/images/visa.png -------------------------------------------------------------------------------- /static/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/layer.js -------------------------------------------------------------------------------- /static/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/mobile/layer.js -------------------------------------------------------------------------------- /static/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /static/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /static/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/layer.css -------------------------------------------------------------------------------- /static/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /static/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /static/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/static/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/templates/test.html -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/utils/db_helper.py -------------------------------------------------------------------------------- /utils/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/utils/tool.py -------------------------------------------------------------------------------- /utils/xml2dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjun2hao/ocr_annotation/HEAD/utils/xml2dict.py --------------------------------------------------------------------------------