├── .gitignore ├── LICENCE ├── README.md ├── assets ├── bike.png ├── bike_mask.png ├── car.png └── car_mask.png ├── requirements.txt └── segment.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /assets/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/assets/bike.png -------------------------------------------------------------------------------- /assets/bike_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/assets/bike_mask.png -------------------------------------------------------------------------------- /assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/assets/car.png -------------------------------------------------------------------------------- /assets/car_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/assets/car_mask.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaris/grounded-segmentation/HEAD/segment.py --------------------------------------------------------------------------------