├── .gitignore ├── README.md ├── camera_demo.py ├── checkpoint ├── README.md ├── logging └── model_weights │ ├── weights.pth125.tar │ ├── weights.pth76.tar │ ├── weights.pth_epoch_195.tar │ └── weights.pth_epoch_199.tar ├── data ├── SetPreparation.py └── WFLW │ └── WFLW_annotations │ └── list_98pt_rect_attr_train_test │ ├── README │ ├── list_98pt_rect_attr_test.txt │ └── list_98pt_rect_attr_train.txt ├── dataset.py ├── euler_angles.py ├── face_detector ├── deploy.prototxt.txt ├── face_detector.py ├── haarcascade_frontalface_default.xml └── res10_300x300_ssd_iter_140000.caffemodel ├── generate_dataset.py ├── model ├── BottleneckResidual.py ├── DepthSepConv.py ├── Loss.py └── model.py ├── requirements.txt ├── test.py ├── train.py ├── utils.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/README.md -------------------------------------------------------------------------------- /camera_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/camera_demo.py -------------------------------------------------------------------------------- /checkpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/README.md -------------------------------------------------------------------------------- /checkpoint/logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/logging -------------------------------------------------------------------------------- /checkpoint/model_weights/weights.pth125.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/model_weights/weights.pth125.tar -------------------------------------------------------------------------------- /checkpoint/model_weights/weights.pth76.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/model_weights/weights.pth76.tar -------------------------------------------------------------------------------- /checkpoint/model_weights/weights.pth_epoch_195.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/model_weights/weights.pth_epoch_195.tar -------------------------------------------------------------------------------- /checkpoint/model_weights/weights.pth_epoch_199.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/checkpoint/model_weights/weights.pth_epoch_199.tar -------------------------------------------------------------------------------- /data/SetPreparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/data/SetPreparation.py -------------------------------------------------------------------------------- /data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/README -------------------------------------------------------------------------------- /data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/list_98pt_rect_attr_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/list_98pt_rect_attr_test.txt -------------------------------------------------------------------------------- /data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/list_98pt_rect_attr_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/data/WFLW/WFLW_annotations/list_98pt_rect_attr_train_test/list_98pt_rect_attr_train.txt -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/dataset.py -------------------------------------------------------------------------------- /euler_angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/euler_angles.py -------------------------------------------------------------------------------- /face_detector/deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/face_detector/deploy.prototxt.txt -------------------------------------------------------------------------------- /face_detector/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/face_detector/face_detector.py -------------------------------------------------------------------------------- /face_detector/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/face_detector/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /face_detector/res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/face_detector/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /generate_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/generate_dataset.py -------------------------------------------------------------------------------- /model/BottleneckResidual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/model/BottleneckResidual.py -------------------------------------------------------------------------------- /model/DepthSepConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/model/DepthSepConv.py -------------------------------------------------------------------------------- /model/Loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/model/Loss.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/model/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/utils.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrElsersy/PFLD-Pytorch-Landmarks/HEAD/visualization.py --------------------------------------------------------------------------------