├── .gitignore ├── LICENSE ├── README.md ├── data ├── 1.jpeg └── result.jpg ├── demo.py ├── face_detector.py ├── face_landmark.py └── model ├── FaceDetector.onnx └── FaceLandmark.onnx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/README.md -------------------------------------------------------------------------------- /data/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/data/1.jpeg -------------------------------------------------------------------------------- /data/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/data/result.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/demo.py -------------------------------------------------------------------------------- /face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/face_detector.py -------------------------------------------------------------------------------- /face_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/face_landmark.py -------------------------------------------------------------------------------- /model/FaceDetector.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/model/FaceDetector.onnx -------------------------------------------------------------------------------- /model/FaceLandmark.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Single430/FaceLandmark1000/HEAD/model/FaceLandmark.onnx --------------------------------------------------------------------------------