├── .gitignore ├── README.md ├── data ├── calibration │ └── cameraCalib.xml ├── example │ └── day01_0087.jpg └── faceModelGeneric.txt ├── normalize_data.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/README.md -------------------------------------------------------------------------------- /data/calibration/cameraCalib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/data/calibration/cameraCalib.xml -------------------------------------------------------------------------------- /data/example/day01_0087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/data/example/day01_0087.jpg -------------------------------------------------------------------------------- /data/faceModelGeneric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/data/faceModelGeneric.txt -------------------------------------------------------------------------------- /normalize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xucong-zhang/data-preprocessing-gaze/HEAD/normalize_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv_python 3 | --------------------------------------------------------------------------------