├── .gitignore ├── LICENSE ├── README.md ├── assets ├── face_seg_fcn8s_deploy.prototxt ├── gallery.jpg ├── net_diagram.png └── test_imgs │ ├── 432.jpg │ ├── 5556.jpg │ ├── image_008_1.jpg │ ├── image_071_1.jpg │ ├── outdoor_082.jpg │ └── outdoor_083.jpg ├── face_segmentation_pytorch ├── __init__.py ├── __main__.py ├── caffe_pb2.py ├── model.py └── utils.py ├── requirements-cpu.txt ├── requirements-gpu.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /assets/face_seg_fcn8s_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/face_seg_fcn8s_deploy.prototxt -------------------------------------------------------------------------------- /assets/gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/gallery.jpg -------------------------------------------------------------------------------- /assets/net_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/net_diagram.png -------------------------------------------------------------------------------- /assets/test_imgs/432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/432.jpg -------------------------------------------------------------------------------- /assets/test_imgs/5556.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/5556.jpg -------------------------------------------------------------------------------- /assets/test_imgs/image_008_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/image_008_1.jpg -------------------------------------------------------------------------------- /assets/test_imgs/image_071_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/image_071_1.jpg -------------------------------------------------------------------------------- /assets/test_imgs/outdoor_082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/outdoor_082.jpg -------------------------------------------------------------------------------- /assets/test_imgs/outdoor_083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/assets/test_imgs/outdoor_083.jpg -------------------------------------------------------------------------------- /face_segmentation_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/face_segmentation_pytorch/__init__.py -------------------------------------------------------------------------------- /face_segmentation_pytorch/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/face_segmentation_pytorch/__main__.py -------------------------------------------------------------------------------- /face_segmentation_pytorch/caffe_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/face_segmentation_pytorch/caffe_pb2.py -------------------------------------------------------------------------------- /face_segmentation_pytorch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/face_segmentation_pytorch/model.py -------------------------------------------------------------------------------- /face_segmentation_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/face_segmentation_pytorch/utils.py -------------------------------------------------------------------------------- /requirements-cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/requirements-cpu.txt -------------------------------------------------------------------------------- /requirements-gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/requirements-gpu.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-fr/face_segmentation_pytorch/HEAD/setup.py --------------------------------------------------------------------------------