├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── docs ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── figures │ └── overviewFig.png └── paper │ ├── paper.bib │ └── paper.md ├── mapGaze.py ├── preprocessing ├── pl_preprocessing.py ├── smi_preprocessing.py └── tobii_preprocessing.py ├── requirements.txt └── tests ├── gazeData_world.tsv ├── referenceImage.jpg ├── referenceImage_COPYRIGHT.txt ├── test_mapGaze.py └── worldCamera.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/figures/overviewFig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/docs/figures/overviewFig.png -------------------------------------------------------------------------------- /docs/paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/docs/paper/paper.bib -------------------------------------------------------------------------------- /docs/paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/docs/paper/paper.md -------------------------------------------------------------------------------- /mapGaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/mapGaze.py -------------------------------------------------------------------------------- /preprocessing/pl_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/preprocessing/pl_preprocessing.py -------------------------------------------------------------------------------- /preprocessing/smi_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/preprocessing/smi_preprocessing.py -------------------------------------------------------------------------------- /preprocessing/tobii_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/preprocessing/tobii_preprocessing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/gazeData_world.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/tests/gazeData_world.tsv -------------------------------------------------------------------------------- /tests/referenceImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/tests/referenceImage.jpg -------------------------------------------------------------------------------- /tests/referenceImage_COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/tests/referenceImage_COPYRIGHT.txt -------------------------------------------------------------------------------- /tests/test_mapGaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/tests/test_mapGaze.py -------------------------------------------------------------------------------- /tests/worldCamera.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmacinnes/mobileGazeMapping/HEAD/tests/worldCamera.mp4 --------------------------------------------------------------------------------