├── .gitignore ├── README.md ├── datasets ├── UnityEyes │ └── README.md ├── mpii_gaze.py └── unity_eyes.py ├── env-linux.yml ├── env-mac.yml ├── eval_mpiigaze.py ├── lbpcascade_frontalface_improved.xml ├── models ├── eyenet.py ├── layers.py └── losses.py ├── notebooks ├── check_preprocessing.ipynb ├── explore_data.ipynb └── explore_mpiigaze.ipynb ├── run_with_webcam.py ├── scripts └── fetch_models.sh ├── static ├── fig1.png └── ge_screenshot.png ├── test.py ├── test ├── __init__.py ├── data │ └── imgs │ │ └── 1.json └── test_unity_eyes.py ├── train.py └── util ├── eye_prediction.py ├── eye_sample.py ├── gaze.py ├── preprocess.py └── softargmax.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/README.md -------------------------------------------------------------------------------- /datasets/UnityEyes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/datasets/UnityEyes/README.md -------------------------------------------------------------------------------- /datasets/mpii_gaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/datasets/mpii_gaze.py -------------------------------------------------------------------------------- /datasets/unity_eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/datasets/unity_eyes.py -------------------------------------------------------------------------------- /env-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/env-linux.yml -------------------------------------------------------------------------------- /env-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/env-mac.yml -------------------------------------------------------------------------------- /eval_mpiigaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/eval_mpiigaze.py -------------------------------------------------------------------------------- /lbpcascade_frontalface_improved.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/lbpcascade_frontalface_improved.xml -------------------------------------------------------------------------------- /models/eyenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/models/eyenet.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/models/losses.py -------------------------------------------------------------------------------- /notebooks/check_preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/notebooks/check_preprocessing.ipynb -------------------------------------------------------------------------------- /notebooks/explore_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/notebooks/explore_data.ipynb -------------------------------------------------------------------------------- /notebooks/explore_mpiigaze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/notebooks/explore_mpiigaze.ipynb -------------------------------------------------------------------------------- /run_with_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/run_with_webcam.py -------------------------------------------------------------------------------- /scripts/fetch_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/scripts/fetch_models.sh -------------------------------------------------------------------------------- /static/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/static/fig1.png -------------------------------------------------------------------------------- /static/ge_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/static/ge_screenshot.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/test.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/imgs/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/test/data/imgs/1.json -------------------------------------------------------------------------------- /test/test_unity_eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/test/test_unity_eyes.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/train.py -------------------------------------------------------------------------------- /util/eye_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/util/eye_prediction.py -------------------------------------------------------------------------------- /util/eye_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/util/eye_sample.py -------------------------------------------------------------------------------- /util/gaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/util/gaze.py -------------------------------------------------------------------------------- /util/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/util/preprocess.py -------------------------------------------------------------------------------- /util/softargmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-wb/gaze-estimation/HEAD/util/softargmax.py --------------------------------------------------------------------------------