gitextract_73u6gdnp/ ├── .devcontainer/ │ ├── devcontainer.json │ └── start.sh ├── .github/ │ └── workflows/ │ └── build-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_EN.md ├── README_JP.md ├── README_KO.md ├── app.py ├── app.spec ├── demo/ │ ├── assets/ │ │ ├── color_list_CN.csv │ │ ├── color_list_EN.csv │ │ ├── size_list_CN.csv │ │ ├── size_list_EN.csv │ │ └── title.md │ ├── config.py │ ├── locales.py │ ├── processor.py │ ├── ui.py │ └── utils.py ├── deploy_api.py ├── docker-compose.yml ├── docs/ │ ├── api_CN.md │ ├── api_EN.md │ ├── face++_CN.md │ └── face++_EN.md ├── hivision/ │ ├── __init__.py │ ├── creator/ │ │ ├── __init__.py │ │ ├── choose_handler.py │ │ ├── context.py │ │ ├── face_detector.py │ │ ├── human_matting.py │ │ ├── layout_calculator.py │ │ ├── move_image.py │ │ ├── photo_adjuster.py │ │ ├── retinaface/ │ │ │ ├── __init__.py │ │ │ ├── box_utils.py │ │ │ ├── inference.py │ │ │ ├── prior_box.py │ │ │ └── weights/ │ │ │ └── .gitkeep │ │ ├── rotation_adjust.py │ │ ├── tensor2numpy.py │ │ ├── utils.py │ │ └── weights/ │ │ └── .gitkeep │ ├── error.py │ ├── plugin/ │ │ ├── beauty/ │ │ │ ├── __init__.py │ │ │ ├── base_adjust.py │ │ │ ├── beauty_tools.py │ │ │ ├── grind_skin.py │ │ │ ├── handler.py │ │ │ ├── thin_face.py │ │ │ └── whitening.py │ │ ├── font/ │ │ │ └── .gitkeep │ │ ├── template/ │ │ │ ├── assets/ │ │ │ │ └── template_config.json │ │ │ └── template_calculator.py │ │ └── watermark.py │ └── utils.py ├── inference.py ├── requirements-app.txt ├── requirements-dev.txt ├── requirements.txt ├── scripts/ │ ├── build_pypi.py │ └── download_model.py └── test/ ├── create_id_photo.py └── temp/ └── .gitkeep