├── .gitignore ├── .gitmodules ├── README.md ├── categories └── democategory │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── code ├── constructNPYheader.m ├── datToNPY.m ├── detectfixaties2015.m ├── detectfixaties2018.m ├── detectfixaties2018fmark.m ├── detectfixaties2018thr.m ├── detectfixaties2022thr.m ├── detectswitches.m ├── detvel.m ├── dispTobiiInstructions.m ├── fixdetect.m ├── fixdetectmovingwindow.m ├── folderfromfolder.m ├── gazecode.m ├── gazesplash.m ├── initeventdetect.m ├── leesTSPupInvis200Ex.m ├── leesTSPupNeon200.m ├── leesgazePupInvis200Exdata.m ├── leesgazePupNeon200data.m ├── leesgazedata.m ├── leesgazedataPosSci.m ├── leesgazedataPupFG.m ├── leesgazedataSMI.m ├── leesgazedataTobii.m ├── maxall.m ├── outputStreamSelectorGUI.m ├── pythagoras.m ├── readNPY.m ├── readNPYheader.m ├── streamSelectorGUI.m ├── tempdat.mat ├── test.m ├── truescreensize.m └── writeNPY.m ├── data ├── demoTobiiSD │ └── projects │ │ └── raoscyb │ │ ├── calibrations │ │ └── 3gqkra3 │ │ │ └── calibration.json │ │ ├── participants │ │ └── vxgtdb2 │ │ │ └── participant.json │ │ ├── project.json │ │ └── recordings │ │ └── gzz7stc │ │ ├── participant.json │ │ ├── recording.json │ │ ├── segments │ │ └── 1 │ │ │ ├── calibration.json │ │ │ ├── et.tslv.gz │ │ │ ├── eyesstream.mp4 │ │ │ ├── fullstream.mp4 │ │ │ ├── livedata.json.gz │ │ │ ├── mems.tslv.gz │ │ │ └── segment.json │ │ └── sysinfo.json └── demodata.txt ├── images ├── splash.png └── videopause.png └── results └── demoresults.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | results/* 3 | *.asv 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/README.md -------------------------------------------------------------------------------- /categories/democategory/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/1.png -------------------------------------------------------------------------------- /categories/democategory/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/2.png -------------------------------------------------------------------------------- /categories/democategory/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/3.png -------------------------------------------------------------------------------- /categories/democategory/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/4.png -------------------------------------------------------------------------------- /categories/democategory/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/5.png -------------------------------------------------------------------------------- /categories/democategory/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/6.png -------------------------------------------------------------------------------- /categories/democategory/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/7.png -------------------------------------------------------------------------------- /categories/democategory/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/8.png -------------------------------------------------------------------------------- /categories/democategory/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/categories/democategory/9.png -------------------------------------------------------------------------------- /code/constructNPYheader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/constructNPYheader.m -------------------------------------------------------------------------------- /code/datToNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/datToNPY.m -------------------------------------------------------------------------------- /code/detectfixaties2015.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectfixaties2015.m -------------------------------------------------------------------------------- /code/detectfixaties2018.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectfixaties2018.m -------------------------------------------------------------------------------- /code/detectfixaties2018fmark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectfixaties2018fmark.m -------------------------------------------------------------------------------- /code/detectfixaties2018thr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectfixaties2018thr.m -------------------------------------------------------------------------------- /code/detectfixaties2022thr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectfixaties2022thr.m -------------------------------------------------------------------------------- /code/detectswitches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detectswitches.m -------------------------------------------------------------------------------- /code/detvel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/detvel.m -------------------------------------------------------------------------------- /code/dispTobiiInstructions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/dispTobiiInstructions.m -------------------------------------------------------------------------------- /code/fixdetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/fixdetect.m -------------------------------------------------------------------------------- /code/fixdetectmovingwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/fixdetectmovingwindow.m -------------------------------------------------------------------------------- /code/folderfromfolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/folderfromfolder.m -------------------------------------------------------------------------------- /code/gazecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/gazecode.m -------------------------------------------------------------------------------- /code/gazesplash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/gazesplash.m -------------------------------------------------------------------------------- /code/initeventdetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/initeventdetect.m -------------------------------------------------------------------------------- /code/leesTSPupInvis200Ex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesTSPupInvis200Ex.m -------------------------------------------------------------------------------- /code/leesTSPupNeon200.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesTSPupNeon200.m -------------------------------------------------------------------------------- /code/leesgazePupInvis200Exdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazePupInvis200Exdata.m -------------------------------------------------------------------------------- /code/leesgazePupNeon200data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazePupNeon200data.m -------------------------------------------------------------------------------- /code/leesgazedata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazedata.m -------------------------------------------------------------------------------- /code/leesgazedataPosSci.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazedataPosSci.m -------------------------------------------------------------------------------- /code/leesgazedataPupFG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazedataPupFG.m -------------------------------------------------------------------------------- /code/leesgazedataSMI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazedataSMI.m -------------------------------------------------------------------------------- /code/leesgazedataTobii.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/leesgazedataTobii.m -------------------------------------------------------------------------------- /code/maxall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/maxall.m -------------------------------------------------------------------------------- /code/outputStreamSelectorGUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/outputStreamSelectorGUI.m -------------------------------------------------------------------------------- /code/pythagoras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/pythagoras.m -------------------------------------------------------------------------------- /code/readNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/readNPY.m -------------------------------------------------------------------------------- /code/readNPYheader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/readNPYheader.m -------------------------------------------------------------------------------- /code/streamSelectorGUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/streamSelectorGUI.m -------------------------------------------------------------------------------- /code/tempdat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/tempdat.mat -------------------------------------------------------------------------------- /code/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/test.m -------------------------------------------------------------------------------- /code/truescreensize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/truescreensize.m -------------------------------------------------------------------------------- /code/writeNPY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/code/writeNPY.m -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/calibrations/3gqkra3/calibration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/calibrations/3gqkra3/calibration.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/participants/vxgtdb2/participant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/participants/vxgtdb2/participant.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/project.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/participant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/participant.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/recording.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/calibration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/calibration.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/et.tslv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/et.tslv.gz -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/eyesstream.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/eyesstream.mp4 -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/fullstream.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/fullstream.mp4 -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/livedata.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/livedata.json.gz -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/mems.tslv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/mems.tslv.gz -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/segment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/segments/1/segment.json -------------------------------------------------------------------------------- /data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/sysinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demoTobiiSD/projects/raoscyb/recordings/gzz7stc/sysinfo.json -------------------------------------------------------------------------------- /data/demodata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/data/demodata.txt -------------------------------------------------------------------------------- /images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/images/splash.png -------------------------------------------------------------------------------- /images/videopause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsbenjamins/gazecode/HEAD/images/videopause.png -------------------------------------------------------------------------------- /results/demoresults.txt: -------------------------------------------------------------------------------- 1 | results will appear here as folders --------------------------------------------------------------------------------