├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── images ├── README.md ├── img1.png └── usage.png ├── masks ├── README.md └── test_mask.png ├── requirements.txt └── utilities └── autorotate_images.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/app.py -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | Test images to annotate -------------------------------------------------------------------------------- /images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/images/img1.png -------------------------------------------------------------------------------- /images/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/images/usage.png -------------------------------------------------------------------------------- /masks/README.md: -------------------------------------------------------------------------------- 1 | Masks are saved here by default but gitignored -------------------------------------------------------------------------------- /masks/test_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/masks/test_mask.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /utilities/autorotate_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robmarkcole/streamlit-segmentation-app/HEAD/utilities/autorotate_images.py --------------------------------------------------------------------------------