├── .gitignore ├── README.md ├── detect.py ├── evaluate.py ├── matting ├── closed_form_matting.md ├── closed_form_matting.py ├── grabcut.py ├── knn_matting.md ├── knn_matting.py └── solve_foreground_background.py ├── models └── models_here.txt ├── mrcnn ├── __init__.py ├── config.py ├── model.py ├── parallel_model.py ├── utils.py └── visualize.py ├── mrcnn_demo.ipynb ├── overview.png └── polygon └── regularize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/README.md -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/detect.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/evaluate.py -------------------------------------------------------------------------------- /matting/closed_form_matting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/closed_form_matting.md -------------------------------------------------------------------------------- /matting/closed_form_matting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/closed_form_matting.py -------------------------------------------------------------------------------- /matting/grabcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/grabcut.py -------------------------------------------------------------------------------- /matting/knn_matting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/knn_matting.md -------------------------------------------------------------------------------- /matting/knn_matting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/knn_matting.py -------------------------------------------------------------------------------- /matting/solve_foreground_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/matting/solve_foreground_background.py -------------------------------------------------------------------------------- /models/models_here.txt: -------------------------------------------------------------------------------- 1 | Trained Mask-RCNN models are placed here. -------------------------------------------------------------------------------- /mrcnn/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mrcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn/config.py -------------------------------------------------------------------------------- /mrcnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn/model.py -------------------------------------------------------------------------------- /mrcnn/parallel_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn/parallel_model.py -------------------------------------------------------------------------------- /mrcnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn/utils.py -------------------------------------------------------------------------------- /mrcnn/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn/visualize.py -------------------------------------------------------------------------------- /mrcnn_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/mrcnn_demo.ipynb -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/overview.png -------------------------------------------------------------------------------- /polygon/regularize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenzhaiyu/footprint-detection/HEAD/polygon/regularize.py --------------------------------------------------------------------------------