├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── __init__.py ├── data └── predefined_classes.txt ├── demo ├── demo.jpg ├── demo3.jpg └── demo4.png ├── icons ├── cancel.png ├── close.png ├── color.png ├── color_line.png ├── copy.png ├── delete.png ├── done.png ├── done.svg ├── edit.png ├── expert1.png ├── expert2.png ├── eye.png ├── feBlend-icon.png ├── file.png ├── fit-width.png ├── fit-window.png ├── fit.png ├── help.png ├── labels.png ├── labels.svg ├── new.png ├── next.png ├── objects.png ├── open.png ├── open.svg ├── prev.png ├── quit.png ├── resetall.png ├── save-as.png ├── save-as.svg ├── save.png ├── save.svg ├── undo-cross.png ├── undo.png ├── verify.png ├── zoom-in.png ├── zoom-out.png └── zoom.png ├── issue_template.md ├── labelImg.py ├── libs ├── __init__.py ├── canvas.py ├── colorDialog.py ├── constants.py ├── labelDialog.py ├── labelFile.py ├── lib.py ├── pascal_voc_io.py ├── settings.py ├── shape.py ├── toolBar.py ├── ustr.py ├── version.py └── zoomWidget.py ├── resources.qrc ├── setup.cfg ├── setup.py └── setup2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | Copyright (C) 2018 3 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/predefined_classes.txt: -------------------------------------------------------------------------------- 1 | dog 2 | person 3 | cat 4 | tv 5 | car 6 | -------------------------------------------------------------------------------- /demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/demo/demo.jpg -------------------------------------------------------------------------------- /demo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/demo/demo3.jpg -------------------------------------------------------------------------------- /demo/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/demo/demo4.png -------------------------------------------------------------------------------- /icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/cancel.png -------------------------------------------------------------------------------- /icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/close.png -------------------------------------------------------------------------------- /icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/color.png -------------------------------------------------------------------------------- /icons/color_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/color_line.png -------------------------------------------------------------------------------- /icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/copy.png -------------------------------------------------------------------------------- /icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/delete.png -------------------------------------------------------------------------------- /icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/done.png -------------------------------------------------------------------------------- /icons/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/done.svg -------------------------------------------------------------------------------- /icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/edit.png -------------------------------------------------------------------------------- /icons/expert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/expert1.png -------------------------------------------------------------------------------- /icons/expert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/expert2.png -------------------------------------------------------------------------------- /icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/eye.png -------------------------------------------------------------------------------- /icons/feBlend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/feBlend-icon.png -------------------------------------------------------------------------------- /icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/file.png -------------------------------------------------------------------------------- /icons/fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/fit-width.png -------------------------------------------------------------------------------- /icons/fit-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/fit-window.png -------------------------------------------------------------------------------- /icons/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/fit.png -------------------------------------------------------------------------------- /icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/help.png -------------------------------------------------------------------------------- /icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/labels.png -------------------------------------------------------------------------------- /icons/labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/labels.svg -------------------------------------------------------------------------------- /icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/new.png -------------------------------------------------------------------------------- /icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/next.png -------------------------------------------------------------------------------- /icons/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/objects.png -------------------------------------------------------------------------------- /icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/open.png -------------------------------------------------------------------------------- /icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/open.svg -------------------------------------------------------------------------------- /icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/prev.png -------------------------------------------------------------------------------- /icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/quit.png -------------------------------------------------------------------------------- /icons/resetall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/resetall.png -------------------------------------------------------------------------------- /icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/save-as.png -------------------------------------------------------------------------------- /icons/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/save-as.svg -------------------------------------------------------------------------------- /icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/save.png -------------------------------------------------------------------------------- /icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/save.svg -------------------------------------------------------------------------------- /icons/undo-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/undo-cross.png -------------------------------------------------------------------------------- /icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/undo.png -------------------------------------------------------------------------------- /icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/verify.png -------------------------------------------------------------------------------- /icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/zoom-in.png -------------------------------------------------------------------------------- /icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/zoom-out.png -------------------------------------------------------------------------------- /icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/icons/zoom.png -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/issue_template.md -------------------------------------------------------------------------------- /labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/labelImg.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/canvas.py -------------------------------------------------------------------------------- /libs/colorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/colorDialog.py -------------------------------------------------------------------------------- /libs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/constants.py -------------------------------------------------------------------------------- /libs/labelDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/labelDialog.py -------------------------------------------------------------------------------- /libs/labelFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/labelFile.py -------------------------------------------------------------------------------- /libs/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/lib.py -------------------------------------------------------------------------------- /libs/pascal_voc_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/pascal_voc_io.py -------------------------------------------------------------------------------- /libs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/settings.py -------------------------------------------------------------------------------- /libs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/shape.py -------------------------------------------------------------------------------- /libs/toolBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/toolBar.py -------------------------------------------------------------------------------- /libs/ustr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/ustr.py -------------------------------------------------------------------------------- /libs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/version.py -------------------------------------------------------------------------------- /libs/zoomWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/libs/zoomWidget.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/resources.qrc -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/setup.py -------------------------------------------------------------------------------- /setup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/AutoLabelImg/HEAD/setup2.py --------------------------------------------------------------------------------