├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── assign_type.gif ├── canvas.py ├── config.py ├── draw_poly.py ├── draw_rect.py ├── gui.py ├── icon.ico ├── img_label.png ├── imgs ├── 007.jpg ├── 007.json ├── 007.json.orig ├── img1.jpg ├── img1.json └── img1.json.orig ├── log_debug.py ├── poly_draw.gif ├── polygon.py ├── rect_draw.gif ├── requirements.txt ├── tight.gif └── tight_box.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: devarshi16 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/README.md -------------------------------------------------------------------------------- /assign_type.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/assign_type.gif -------------------------------------------------------------------------------- /canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/canvas.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/config.py -------------------------------------------------------------------------------- /draw_poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/draw_poly.py -------------------------------------------------------------------------------- /draw_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/draw_rect.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/gui.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/icon.ico -------------------------------------------------------------------------------- /img_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/img_label.png -------------------------------------------------------------------------------- /imgs/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/007.jpg -------------------------------------------------------------------------------- /imgs/007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/007.json -------------------------------------------------------------------------------- /imgs/007.json.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/007.json.orig -------------------------------------------------------------------------------- /imgs/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/img1.jpg -------------------------------------------------------------------------------- /imgs/img1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/img1.json -------------------------------------------------------------------------------- /imgs/img1.json.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/imgs/img1.json.orig -------------------------------------------------------------------------------- /log_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/log_debug.py -------------------------------------------------------------------------------- /poly_draw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/poly_draw.gif -------------------------------------------------------------------------------- /polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/polygon.py -------------------------------------------------------------------------------- /rect_draw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/rect_draw.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ttkthemes==2.4.0 2 | Pillow==10.0.1 3 | -------------------------------------------------------------------------------- /tight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/tight.gif -------------------------------------------------------------------------------- /tight_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devarshi16/Form-Labeller/HEAD/tight_box.py --------------------------------------------------------------------------------