├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── color150.mat ├── demo.jpg ├── demo.py ├── freeze.sh ├── helper.py ├── inference.py ├── model.py ├── model └── .gitkeep ├── network.py ├── requirements.txt ├── server.py └── tools └── graph_freezer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tiangolo/uwsgi-nginx-flask:python2.7 2 | 3 | COPY . /app 4 | RUN pip install -r requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /color150.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/color150.mat -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/demo.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/demo.py -------------------------------------------------------------------------------- /freeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/freeze.sh -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/helper.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/inference.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/model.py -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python 3 | tensorflow -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/server.py -------------------------------------------------------------------------------- /tools/graph_freezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KleinYuan/tf-segmentation/HEAD/tools/graph_freezer.py --------------------------------------------------------------------------------