├── README.md ├── cal_gaze.py ├── demo └── network.png ├── direct_train_gaze.py ├── extract_feat.py ├── gaze_tracking_报告.pdf ├── keras_models ├── eye_model.h5 ├── eye_model_shufflenet.h5 └── head_model.h5 ├── ml_model ├── lalgb.model └── lolgb.model ├── network.png ├── sample_data ├── eye_label.txt ├── gaze_label.txt ├── head │ └── 0.png ├── head_label.txt ├── l_eye │ └── 0.png └── r_eye │ └── 0.png ├── shufflenet_utils.py ├── shufflenetv2.py ├── train_head&eye.py └── train_head_with_landmark.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/README.md -------------------------------------------------------------------------------- /cal_gaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/cal_gaze.py -------------------------------------------------------------------------------- /demo/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/demo/network.png -------------------------------------------------------------------------------- /direct_train_gaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/direct_train_gaze.py -------------------------------------------------------------------------------- /extract_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/extract_feat.py -------------------------------------------------------------------------------- /gaze_tracking_报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/gaze_tracking_报告.pdf -------------------------------------------------------------------------------- /keras_models/eye_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/keras_models/eye_model.h5 -------------------------------------------------------------------------------- /keras_models/eye_model_shufflenet.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/keras_models/eye_model_shufflenet.h5 -------------------------------------------------------------------------------- /keras_models/head_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/keras_models/head_model.h5 -------------------------------------------------------------------------------- /ml_model/lalgb.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/ml_model/lalgb.model -------------------------------------------------------------------------------- /ml_model/lolgb.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/ml_model/lolgb.model -------------------------------------------------------------------------------- /network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/network.png -------------------------------------------------------------------------------- /sample_data/eye_label.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1.87116 3 | 18.0242 -------------------------------------------------------------------------------- /sample_data/gaze_label.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 38.9202 3 | -36.6211 4 | -------------------------------------------------------------------------------- /sample_data/head/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/sample_data/head/0.png -------------------------------------------------------------------------------- /sample_data/head_label.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 36.7031 3 | 18.6084 -------------------------------------------------------------------------------- /sample_data/l_eye/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/sample_data/l_eye/0.png -------------------------------------------------------------------------------- /sample_data/r_eye/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/sample_data/r_eye/0.png -------------------------------------------------------------------------------- /shufflenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/shufflenet_utils.py -------------------------------------------------------------------------------- /shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/shufflenetv2.py -------------------------------------------------------------------------------- /train_head&eye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/train_head&eye.py -------------------------------------------------------------------------------- /train_head_with_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Walleclipse/Gaze_Tracking/HEAD/train_head_with_landmark.py --------------------------------------------------------------------------------