├── .gitignore ├── .travis.yml ├── COPYING ├── LICENSE ├── README.md ├── doc ├── Makefile ├── _static │ ├── example_labels_gui.png │ └── sloth.gif ├── api │ ├── containers.rst │ ├── index.rst │ ├── inserters.rst │ ├── items.rst │ ├── labeltool.rst │ ├── model.rst │ └── scene.rst ├── concepts.rst ├── conf.py ├── configuration.rst ├── containers.rst ├── examples.rst ├── first_steps.rst ├── index.rst ├── inserters.rst ├── installation.rst └── items.rst ├── examples ├── customrectitemconfig.py ├── example1_labels.json ├── image1.jpg ├── image2.jpg └── test.jpg ├── scripts └── update_gui.sh ├── setup.py ├── sloth ├── __init__.py ├── annotations │ ├── __init__.py │ ├── container.py │ └── model.py ├── bin │ └── sloth ├── conf │ ├── __init__.py │ └── default_config.py ├── core │ ├── __init__.py │ ├── cli.py │ ├── commands.py │ ├── exceptions.py │ ├── labeltool.py │ └── utils.py ├── gui │ ├── __init__.py │ ├── annotationscene.py │ ├── buttonarea.py │ ├── controlbuttons.py │ ├── floatinglayout.py │ ├── frameviewer.py │ ├── icons.qrc │ ├── icons │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── disk.png │ │ ├── disk_multiple.png │ │ ├── door_in.png │ │ ├── door_out.png │ │ ├── folder_table.png │ │ ├── page_white.png │ │ ├── page_white_text.png │ │ ├── picture_add.png │ │ ├── sloth.svg │ │ ├── zoom.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ ├── labeltool.py │ ├── labeltool.ui │ ├── propertyeditor.py │ ├── qrc_icons.py │ └── utils.py ├── items │ ├── __init__.py │ ├── factory.py │ ├── inserters.py │ └── items.py ├── plugins │ ├── __init__.py │ └── facedetector.py └── utils │ ├── __init__.py │ └── bind.py └── tests ├── commands_test.py ├── container_test.py ├── data ├── example1_labels.json ├── image1.jpg ├── image2.jpg └── test.jpg ├── item_factory_test.py ├── model_test.py └── pymodeltest ├── LICENSE.GPL ├── README ├── __init__.py └── modeltest.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/example_labels_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/_static/example_labels_gui.png -------------------------------------------------------------------------------- /doc/_static/sloth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/_static/sloth.gif -------------------------------------------------------------------------------- /doc/api/containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/containers.rst -------------------------------------------------------------------------------- /doc/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/index.rst -------------------------------------------------------------------------------- /doc/api/inserters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/inserters.rst -------------------------------------------------------------------------------- /doc/api/items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/items.rst -------------------------------------------------------------------------------- /doc/api/labeltool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/labeltool.rst -------------------------------------------------------------------------------- /doc/api/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/model.rst -------------------------------------------------------------------------------- /doc/api/scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/api/scene.rst -------------------------------------------------------------------------------- /doc/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/concepts.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/configuration.rst -------------------------------------------------------------------------------- /doc/containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/containers.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/first_steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/first_steps.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/inserters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/inserters.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/doc/items.rst -------------------------------------------------------------------------------- /examples/customrectitemconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/examples/customrectitemconfig.py -------------------------------------------------------------------------------- /examples/example1_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/examples/example1_labels.json -------------------------------------------------------------------------------- /examples/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/examples/image1.jpg -------------------------------------------------------------------------------- /examples/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/examples/image2.jpg -------------------------------------------------------------------------------- /examples/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/examples/test.jpg -------------------------------------------------------------------------------- /scripts/update_gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/scripts/update_gui.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/setup.py -------------------------------------------------------------------------------- /sloth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/__init__.py -------------------------------------------------------------------------------- /sloth/annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sloth/annotations/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/annotations/container.py -------------------------------------------------------------------------------- /sloth/annotations/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/annotations/model.py -------------------------------------------------------------------------------- /sloth/bin/sloth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/bin/sloth -------------------------------------------------------------------------------- /sloth/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/conf/__init__.py -------------------------------------------------------------------------------- /sloth/conf/default_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/conf/default_config.py -------------------------------------------------------------------------------- /sloth/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sloth/core/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/core/cli.py -------------------------------------------------------------------------------- /sloth/core/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/core/commands.py -------------------------------------------------------------------------------- /sloth/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/core/exceptions.py -------------------------------------------------------------------------------- /sloth/core/labeltool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/core/labeltool.py -------------------------------------------------------------------------------- /sloth/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/core/utils.py -------------------------------------------------------------------------------- /sloth/gui/__init__.py: -------------------------------------------------------------------------------- 1 | from .labeltool import MainWindow 2 | -------------------------------------------------------------------------------- /sloth/gui/annotationscene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/annotationscene.py -------------------------------------------------------------------------------- /sloth/gui/buttonarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/buttonarea.py -------------------------------------------------------------------------------- /sloth/gui/controlbuttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/controlbuttons.py -------------------------------------------------------------------------------- /sloth/gui/floatinglayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/floatinglayout.py -------------------------------------------------------------------------------- /sloth/gui/frameviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/frameviewer.py -------------------------------------------------------------------------------- /sloth/gui/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons.qrc -------------------------------------------------------------------------------- /sloth/gui/icons/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/arrow_left.png -------------------------------------------------------------------------------- /sloth/gui/icons/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/arrow_right.png -------------------------------------------------------------------------------- /sloth/gui/icons/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/disk.png -------------------------------------------------------------------------------- /sloth/gui/icons/disk_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/disk_multiple.png -------------------------------------------------------------------------------- /sloth/gui/icons/door_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/door_in.png -------------------------------------------------------------------------------- /sloth/gui/icons/door_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/door_out.png -------------------------------------------------------------------------------- /sloth/gui/icons/folder_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/folder_table.png -------------------------------------------------------------------------------- /sloth/gui/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/page_white.png -------------------------------------------------------------------------------- /sloth/gui/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/page_white_text.png -------------------------------------------------------------------------------- /sloth/gui/icons/picture_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/picture_add.png -------------------------------------------------------------------------------- /sloth/gui/icons/sloth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/sloth.svg -------------------------------------------------------------------------------- /sloth/gui/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/zoom.png -------------------------------------------------------------------------------- /sloth/gui/icons/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/zoom_in.png -------------------------------------------------------------------------------- /sloth/gui/icons/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/icons/zoom_out.png -------------------------------------------------------------------------------- /sloth/gui/labeltool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/labeltool.py -------------------------------------------------------------------------------- /sloth/gui/labeltool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/labeltool.ui -------------------------------------------------------------------------------- /sloth/gui/propertyeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/propertyeditor.py -------------------------------------------------------------------------------- /sloth/gui/qrc_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/qrc_icons.py -------------------------------------------------------------------------------- /sloth/gui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/gui/utils.py -------------------------------------------------------------------------------- /sloth/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/items/__init__.py -------------------------------------------------------------------------------- /sloth/items/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/items/factory.py -------------------------------------------------------------------------------- /sloth/items/inserters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/items/inserters.py -------------------------------------------------------------------------------- /sloth/items/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/items/items.py -------------------------------------------------------------------------------- /sloth/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/plugins/__init__.py -------------------------------------------------------------------------------- /sloth/plugins/facedetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/plugins/facedetector.py -------------------------------------------------------------------------------- /sloth/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/utils/__init__.py -------------------------------------------------------------------------------- /sloth/utils/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/sloth/utils/bind.py -------------------------------------------------------------------------------- /tests/commands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/commands_test.py -------------------------------------------------------------------------------- /tests/container_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/container_test.py -------------------------------------------------------------------------------- /tests/data/example1_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/data/example1_labels.json -------------------------------------------------------------------------------- /tests/data/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/data/image1.jpg -------------------------------------------------------------------------------- /tests/data/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/data/image2.jpg -------------------------------------------------------------------------------- /tests/data/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/data/test.jpg -------------------------------------------------------------------------------- /tests/item_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/item_factory_test.py -------------------------------------------------------------------------------- /tests/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/model_test.py -------------------------------------------------------------------------------- /tests/pymodeltest/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/pymodeltest/LICENSE.GPL -------------------------------------------------------------------------------- /tests/pymodeltest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/pymodeltest/README -------------------------------------------------------------------------------- /tests/pymodeltest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pymodeltest/modeltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvhciKIT/sloth/HEAD/tests/pymodeltest/modeltest.py --------------------------------------------------------------------------------