API Reference¶
kexxu_eye_sdk ¶
kexxu_eye_sdk.format.openeye_file_to_xy ¶
openeye_file_to_xy(path)
Convert an OpenEye eye tracking recording datafile to x,y coordinates in pixels on the video, one per frame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
The file path to the OpenEye Datafile. |
required |
Returns:
| Type | Description |
|---|---|
List[Tuple[int, int]]
|
List with [ (x,y), ... ] gaze locations, one for each video frame |
Source code in src/kexxu_eye_sdk/format.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |