├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── config.yaml └── facetools.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymgenesis/FaceTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymgenesis/FaceTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymgenesis/FaceTools/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymgenesis/FaceTools/HEAD/config.yaml -------------------------------------------------------------------------------- /facetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymgenesis/FaceTools/HEAD/facetools.py --------------------------------------------------------------------------------