├── .gitignore ├── .readthedocs.yml ├── HISTORY.md ├── LICENSE ├── README.md ├── Resizing_Demo.ipynb ├── Slicing_Demo.ipynb ├── docs ├── img │ ├── empty_tiles.png │ ├── favicon.ico │ ├── ibs_demo.jpg │ ├── output_10_1.png │ ├── output_10_2.png │ ├── output_12_1.png │ ├── output_12_2.png │ ├── output_18_0.png │ ├── output_18_1.png │ ├── output_20_0.png │ ├── output_20_1.png │ ├── partial_labels.jpg │ └── resize_demo.png ├── index.md ├── license.md ├── resizing-demo.md ├── slicing-demo.md └── useful-functions.md ├── image_bbox_slicer ├── __init__.py ├── helpers.py ├── resizer.py └── slicer.py ├── imgs ├── empty_tiles.png ├── ibs_demo.jpg ├── ibs_demo2.jpg ├── output_10_1.png ├── output_10_2.png ├── output_12_1.png ├── output_12_2.png ├── output_18_0.png ├── output_18_1.png ├── output_20_0.png ├── output_20_1.png ├── partial_labels.jpg └── resize_demo.png ├── mkdocs.yml ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/README.md -------------------------------------------------------------------------------- /Resizing_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/Resizing_Demo.ipynb -------------------------------------------------------------------------------- /Slicing_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/Slicing_Demo.ipynb -------------------------------------------------------------------------------- /docs/img/empty_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/empty_tiles.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/ibs_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/ibs_demo.jpg -------------------------------------------------------------------------------- /docs/img/output_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_10_1.png -------------------------------------------------------------------------------- /docs/img/output_10_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_10_2.png -------------------------------------------------------------------------------- /docs/img/output_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_12_1.png -------------------------------------------------------------------------------- /docs/img/output_12_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_12_2.png -------------------------------------------------------------------------------- /docs/img/output_18_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_18_0.png -------------------------------------------------------------------------------- /docs/img/output_18_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_18_1.png -------------------------------------------------------------------------------- /docs/img/output_20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_20_0.png -------------------------------------------------------------------------------- /docs/img/output_20_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/output_20_1.png -------------------------------------------------------------------------------- /docs/img/partial_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/partial_labels.jpg -------------------------------------------------------------------------------- /docs/img/resize_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/img/resize_demo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/resizing-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/resizing-demo.md -------------------------------------------------------------------------------- /docs/slicing-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/slicing-demo.md -------------------------------------------------------------------------------- /docs/useful-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/docs/useful-functions.md -------------------------------------------------------------------------------- /image_bbox_slicer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/image_bbox_slicer/__init__.py -------------------------------------------------------------------------------- /image_bbox_slicer/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/image_bbox_slicer/helpers.py -------------------------------------------------------------------------------- /image_bbox_slicer/resizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/image_bbox_slicer/resizer.py -------------------------------------------------------------------------------- /image_bbox_slicer/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/image_bbox_slicer/slicer.py -------------------------------------------------------------------------------- /imgs/empty_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/empty_tiles.png -------------------------------------------------------------------------------- /imgs/ibs_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/ibs_demo.jpg -------------------------------------------------------------------------------- /imgs/ibs_demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/ibs_demo2.jpg -------------------------------------------------------------------------------- /imgs/output_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_10_1.png -------------------------------------------------------------------------------- /imgs/output_10_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_10_2.png -------------------------------------------------------------------------------- /imgs/output_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_12_1.png -------------------------------------------------------------------------------- /imgs/output_12_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_12_2.png -------------------------------------------------------------------------------- /imgs/output_18_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_18_0.png -------------------------------------------------------------------------------- /imgs/output_18_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_18_1.png -------------------------------------------------------------------------------- /imgs/output_20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_20_0.png -------------------------------------------------------------------------------- /imgs/output_20_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/output_20_1.png -------------------------------------------------------------------------------- /imgs/partial_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/partial_labels.jpg -------------------------------------------------------------------------------- /imgs/resize_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/imgs/resize_demo.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | pascal-voc-writer 3 | numpy 4 | matplotlib 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acl21/image_bbox_slicer/HEAD/setup.py --------------------------------------------------------------------------------