├── .gitignore ├── LICENSE.md ├── README.md ├── code ├── apple_device_data.csv ├── cam2screen.m ├── cm2pts.m ├── cropRepeatingEdge.m ├── faceGridFromFaceRect.m ├── faceGridFromParams.m ├── generateCrops.m ├── loadAllSubjects.m ├── loadAllSubjectsVectors.m ├── loadAppleDeviceData.m ├── loadSubject.m ├── pts2cm.m └── screen2cam.m ├── models ├── itracker_deploy.prototxt ├── itracker_solver.prototxt ├── itracker_train_val.prototxt ├── mean_images │ ├── mean_face_224.binaryproto │ ├── mean_face_224.mat │ ├── mean_left_224.binaryproto │ ├── mean_left_224.mat │ ├── mean_left_224_new.binaryproto │ ├── mean_right_224.binaryproto │ └── mean_right_224.mat └── snapshots │ ├── itracker25x_iter_92000.caffemodel │ └── itracker_iter_92000.caffemodel └── pytorch ├── ITrackerData.py ├── ITrackerModel.py ├── LICENSE.md ├── README.md ├── checkpoint.pth.tar ├── main.py ├── mean_face_224.mat ├── mean_left_224.mat ├── mean_right_224.mat ├── prepareDataset.py ├── reference_metadata.mat └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/README.md -------------------------------------------------------------------------------- /code/apple_device_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/apple_device_data.csv -------------------------------------------------------------------------------- /code/cam2screen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/cam2screen.m -------------------------------------------------------------------------------- /code/cm2pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/cm2pts.m -------------------------------------------------------------------------------- /code/cropRepeatingEdge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/cropRepeatingEdge.m -------------------------------------------------------------------------------- /code/faceGridFromFaceRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/faceGridFromFaceRect.m -------------------------------------------------------------------------------- /code/faceGridFromParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/faceGridFromParams.m -------------------------------------------------------------------------------- /code/generateCrops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/generateCrops.m -------------------------------------------------------------------------------- /code/loadAllSubjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/loadAllSubjects.m -------------------------------------------------------------------------------- /code/loadAllSubjectsVectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/loadAllSubjectsVectors.m -------------------------------------------------------------------------------- /code/loadAppleDeviceData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/loadAppleDeviceData.m -------------------------------------------------------------------------------- /code/loadSubject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/loadSubject.m -------------------------------------------------------------------------------- /code/pts2cm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/pts2cm.m -------------------------------------------------------------------------------- /code/screen2cam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/code/screen2cam.m -------------------------------------------------------------------------------- /models/itracker_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/itracker_deploy.prototxt -------------------------------------------------------------------------------- /models/itracker_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/itracker_solver.prototxt -------------------------------------------------------------------------------- /models/itracker_train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/itracker_train_val.prototxt -------------------------------------------------------------------------------- /models/mean_images/mean_face_224.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_face_224.binaryproto -------------------------------------------------------------------------------- /models/mean_images/mean_face_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_face_224.mat -------------------------------------------------------------------------------- /models/mean_images/mean_left_224.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_left_224.binaryproto -------------------------------------------------------------------------------- /models/mean_images/mean_left_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_left_224.mat -------------------------------------------------------------------------------- /models/mean_images/mean_left_224_new.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_left_224_new.binaryproto -------------------------------------------------------------------------------- /models/mean_images/mean_right_224.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_right_224.binaryproto -------------------------------------------------------------------------------- /models/mean_images/mean_right_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/mean_images/mean_right_224.mat -------------------------------------------------------------------------------- /models/snapshots/itracker25x_iter_92000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/snapshots/itracker25x_iter_92000.caffemodel -------------------------------------------------------------------------------- /models/snapshots/itracker_iter_92000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/models/snapshots/itracker_iter_92000.caffemodel -------------------------------------------------------------------------------- /pytorch/ITrackerData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/ITrackerData.py -------------------------------------------------------------------------------- /pytorch/ITrackerModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/ITrackerModel.py -------------------------------------------------------------------------------- /pytorch/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/LICENSE.md -------------------------------------------------------------------------------- /pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/README.md -------------------------------------------------------------------------------- /pytorch/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/checkpoint.pth.tar -------------------------------------------------------------------------------- /pytorch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/main.py -------------------------------------------------------------------------------- /pytorch/mean_face_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/mean_face_224.mat -------------------------------------------------------------------------------- /pytorch/mean_left_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/mean_left_224.mat -------------------------------------------------------------------------------- /pytorch/mean_right_224.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/mean_right_224.mat -------------------------------------------------------------------------------- /pytorch/prepareDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/prepareDataset.py -------------------------------------------------------------------------------- /pytorch/reference_metadata.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/reference_metadata.mat -------------------------------------------------------------------------------- /pytorch/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSAILVision/GazeCapture/HEAD/pytorch/requirements.txt --------------------------------------------------------------------------------