https://github.com/thesoenke/headpose
Head pose estimation using PyTorch
https://github.com/thesoenke/headpose
headpose pytorch
Last synced: about 1 year ago
JSON representation
Head pose estimation using PyTorch
- Host: GitHub
- URL: https://github.com/thesoenke/headpose
- Owner: theSoenke
- License: mit
- Created: 2019-07-14T09:44:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-25T10:55:02.000Z (almost 2 years ago)
- Last Synced: 2025-05-07T05:05:56.635Z (about 1 year ago)
- Topics: headpose, pytorch
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Head Pose Estimation
Implementation of [Fine-Grained Head Pose Estimation Without Keypoints](https://arxiv.org/abs/1710.00925)
./scripts/download_model.sh
python3 head_pose.py --image face.png
## Usage
```python
head_pose = HeadPose("data/hopenet.pkl")
angles = head_pose.predict("face.png")
print(f"Pose: {angles})
```
Code based on [natanielruiz/deep-head-pose](https://github.com/natanielruiz/deep-head-pose)