22 lines
2 KiB
Markdown
22 lines
2 KiB
Markdown
### 3D Gaze Estimation from 2D Pupil Positions on Monocular Head-Mounted Eye Trackers
|
|
**Mohsen Mansouryar, Julian Steil, Yusuke Sugano and Andreas Bulling**
|
|
|
|
published at ETRA 2016
|
|
|
|
code -> Contains main scripts. below you can see a list of commands and the results they produce:
|
|
- cmd: python parallax_analysis.py pts |-> result: plot of calibration and test points.
|
|
- cmd: python parallax_analysis.py 2d3d |-> result: plot of 2D-to-2D againt 3D-to-3D mapping over all number of calibration depths.
|
|
- cmd: python parallax_analysis.py 2d2d_2d3d |-> result: plot comparing parallax error over five different test depths for three calibration depths of 1.0m, 1.5m, and 2.0m between 2D-to-2D and 3D-to-3D mapping.
|
|
- cmd: python parallax_2D3D_3Cdepths.py |-> result: plot comparing average angular error of the two mapping techniques when 3 calibration depths are used together. (depths 1 to 5 correspond to test depths 1.0m to 2.0m)
|
|
|
|
code/pupil -> Modules directly used from PUPIL source code for baseline 2D-to-2D mapping and data stream correlation.
|
|
|
|
code/recording -> Scripts related to dataset recording and marker visualization and tracking. script dependencies are python 2's openCV and ArUco library. more information regarding each module is documented where required.
|
|
|
|
code/results -> Contains gaze estimation results for both 2D-to-2D and 2D-to-3D mapping approaches with multiple calibration depths on data from participants. data files in the root directory of each method correspond to single depth calibration results. data format is described inside README.txt inside each method directory. the results are also available via /BS/3D_Gaze_Tracking/work/results
|
|
|
|
code/Visualization -> Creation of figures for the paper
|
|
1CalibrationDepth.py -> 2D-to-2D vs. 2D-to-3D with one calibration depth
|
|
3CalibrationDepths.py -> 2D-to-2D vs. 2D-to-3D with three calibration depth
|
|
EffectDistanceDifference1CalibrationDepth.py -> Effect of different distances to the original calibration depth
|
|
EffectNumberofClusters.py -> Effect of the number of clusters
|