├── .gitignore ├── README.md ├── facial_landmark_detection.py ├── get_shape_detector.py ├── images ├── face1.jpg ├── face2.jpg └── face3.jpg ├── requirements.txt └── results ├── facelandmark68.png ├── facial_landmarks_68markup.jpg ├── landmarks.1.jpg └── result_m.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/README.md -------------------------------------------------------------------------------- /facial_landmark_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/facial_landmark_detection.py -------------------------------------------------------------------------------- /get_shape_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/get_shape_detector.py -------------------------------------------------------------------------------- /images/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/images/face1.jpg -------------------------------------------------------------------------------- /images/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/images/face2.jpg -------------------------------------------------------------------------------- /images/face3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/images/face3.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/facelandmark68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/results/facelandmark68.png -------------------------------------------------------------------------------- /results/facial_landmarks_68markup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/results/facial_landmarks_68markup.jpg -------------------------------------------------------------------------------- /results/landmarks.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/results/landmarks.1.jpg -------------------------------------------------------------------------------- /results/result_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravankumar147/Facial-Landmark-Detection/HEAD/results/result_m.png --------------------------------------------------------------------------------