An open API service indexing awesome lists of open source software.

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

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)