├── .gitignore ├── README.md ├── camera_calibration.py ├── docs ├── 3d_plot.gif └── demo.gif ├── main.py ├── requirements.txt ├── utils.py ├── visualization.py └── webcam.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/README.md -------------------------------------------------------------------------------- /camera_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/camera_calibration.py -------------------------------------------------------------------------------- /docs/3d_plot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/docs/3d_plot.gif -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/utils.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/visualization.py -------------------------------------------------------------------------------- /webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pperle/gaze-data-collection/HEAD/webcam.py --------------------------------------------------------------------------------