├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── api.rst ├── conf.py ├── index.rst ├── make.bat └── tutorial.rst ├── examples ├── COCO Format.ipynb ├── Untitled.ipynb ├── XML to COCO Format.ipynb ├── data │ ├── coco_example │ │ ├── tesla.jpg │ │ └── tesla.json │ └── xml_example │ │ ├── 009958.jpg │ │ ├── 009958.xml │ │ ├── 009961.jpg │ │ └── 009961.xml └── example.json ├── imantics ├── __init__.py ├── annotation.py ├── basic.py ├── category.py ├── color.py ├── dataset.py ├── image.py ├── point.py ├── styles.py └── utils.py ├── pytest.ini ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_annotation.py ├── test_bbox.py ├── test_dataset.py ├── test_image.py └── test_mask.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /examples/COCO Format.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/COCO Format.ipynb -------------------------------------------------------------------------------- /examples/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/Untitled.ipynb -------------------------------------------------------------------------------- /examples/XML to COCO Format.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/XML to COCO Format.ipynb -------------------------------------------------------------------------------- /examples/data/coco_example/tesla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/coco_example/tesla.jpg -------------------------------------------------------------------------------- /examples/data/coco_example/tesla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/coco_example/tesla.json -------------------------------------------------------------------------------- /examples/data/xml_example/009958.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/xml_example/009958.jpg -------------------------------------------------------------------------------- /examples/data/xml_example/009958.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/xml_example/009958.xml -------------------------------------------------------------------------------- /examples/data/xml_example/009961.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/xml_example/009961.jpg -------------------------------------------------------------------------------- /examples/data/xml_example/009961.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/data/xml_example/009961.xml -------------------------------------------------------------------------------- /examples/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/examples/example.json -------------------------------------------------------------------------------- /imantics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/__init__.py -------------------------------------------------------------------------------- /imantics/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/annotation.py -------------------------------------------------------------------------------- /imantics/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/basic.py -------------------------------------------------------------------------------- /imantics/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/category.py -------------------------------------------------------------------------------- /imantics/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/color.py -------------------------------------------------------------------------------- /imantics/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/dataset.py -------------------------------------------------------------------------------- /imantics/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/image.py -------------------------------------------------------------------------------- /imantics/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/point.py -------------------------------------------------------------------------------- /imantics/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/styles.py -------------------------------------------------------------------------------- /imantics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/imantics/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python 3 | sphinx_rtd_theme 4 | lxml 5 | xmljson -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/tests/test_annotation.py -------------------------------------------------------------------------------- /tests/test_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/tests/test_bbox.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/tests/test_image.py -------------------------------------------------------------------------------- /tests/test_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbroks/imantics/HEAD/tests/test_mask.py --------------------------------------------------------------------------------