gitextract_iw38_tli/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── conda/ │ └── meta.yaml ├── examples/ │ ├── demo.ipynb │ └── detect_landmarks_in_image.py ├── face_alignment/ │ ├── __init__.py │ ├── api.py │ ├── detection/ │ │ ├── __init__.py │ │ ├── blazeface/ │ │ │ ├── __init__.py │ │ │ ├── blazeface_detector.py │ │ │ ├── detect.py │ │ │ ├── net_blazeface.py │ │ │ └── utils.py │ │ ├── core.py │ │ ├── dlib/ │ │ │ ├── __init__.py │ │ │ └── dlib_detector.py │ │ ├── folder/ │ │ │ ├── __init__.py │ │ │ └── folder_detector.py │ │ └── sfd/ │ │ ├── __init__.py │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ └── sfd_detector.py │ ├── folder_data.py │ └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test/ │ ├── facealignment_test.py │ ├── smoke_test.py │ └── test_utils.py └── tox.ini