A deep learning framework based on Tensorflow for the training of high performance gaze estimation.
Please note that though this framework may work on various platforms, it has only been tested on an Ubuntu 16.04 system.
This framework currently integrates the following models:
Eye region Landmarks based Gaze Estimation.
Park, Seonwook, Xucong Zhang, Andreas Bulling, and Otmar Hilliges. "Learning to find eye region landmarks for remote gaze estimation in unconstrained settings." In Proceedings of the 2018 ACM Symposium on Eye Tracking Research & Applications, p. 21. ACM, 2018.
- Project page: https://ait.ethz.ch/projects/2018/landmarks-gaze/
- Video: https://youtu.be/cLUHKYfZN5s
Run (with sudo
appended if necessary),
python3 setup.py install
Note that this can be done within a virtual environment. In this case, the sequence of commands would be similar to:
mkvirtualenv -p $(which python3) myenv
python3 setup.py install
when using virtualenvwrapper.
Tensorflow is assumed to be installed separately, to allow for usage of custom wheel files if necessary.
Please follow the official installation guide for Tensorflow here.
To acquire the pre-trained weights provided with this repository, please run:
bash get_trained_weights.bash
To run the webcam demo, perform the following:
cd src
python3 elg_demo.py
To see available options, please run python3 elg_demo.py --help
instead.
datasets/
- all data sources required for training/validation/testing.outputs/
- any output for a model will be placed here, including logs, summaries, and checkpoints.src/
- all source code.core/
- base classesdatasources/
- routines for reading and preprocessing entries for training and testingmodels/
- neural network definitionsutil/
- utility methods