├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets └── demo.png ├── cursor.py ├── data └── .keep ├── desktopify.py ├── requirements.txt ├── settings.py ├── static └── css │ └── style.css └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/app.py -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/assets/demo.png -------------------------------------------------------------------------------- /cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/cursor.py -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktopify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/desktopify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/settings.py -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooya-mohammadi/ocr-labeling-tool/HEAD/templates/index.html --------------------------------------------------------------------------------