Skip to content

Commit

Permalink
Make field order in doc match actual field order
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Oct 15, 2024
1 parent 098219c commit 925a46a
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions src/pupil_labs/neon_recording/stream/eye_state_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,20 @@ class EyeStateStream(Stream):
Each record contains:
* `ts`: The moment these data were recorded
* The diameter of each pupil in mm
* `pupil_diameter_left`
* `pupil_diameter_right`
* The position of each eyeball relative to the scene camera, in mm
* `eyeball_center_left_x`
* `eyeball_center_left_y`
* `eyeball_center_left_z`
* `eyeball_center_right_x`
* `eyeball_center_right_y`
* `eyeball_center_right_z`
* A vector in the forward direction of each eye's optical axis
* `optical_axis_left_x`
* `optical_axis_left_y`
* `optical_axis_left_z`
* `optical_axis_right_x`
* `optical_axis_right_y`
* `optical_axis_right_z`
* `pupil_diameter_left`: The diameter of the left pupil in mm
* `eyeball_center_left_x`: The position of the left eyeball relative to the scene camera, in mm
* `eyeball_center_left_y`
* `eyeball_center_left_z`
* `optical_axis_left_x`: A vector in the forward direction of the left eye's optical axis
* `optical_axis_left_y`
* `optical_axis_left_z`
* `pupil_diameter_left`: The diameter of the right pupil in mm
* `eyeball_center_left_x`: The position of the right eyeball relative to the scene camera, in mm
* `eyeball_center_left_y`
* `eyeball_center_left_z`
* `optical_axis_left_x`: A vector in the forward direction of the right eye's optical axis
* `optical_axis_left_y`
* `optical_axis_left_z`
"""

def __init__(self, recording):
Expand Down

0 comments on commit 925a46a

Please sign in to comment.