File tree 5 files changed +7
-2
lines changed
pupil_capture/pupil_capture_lsl_relay
5 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 7
7
License details are in the file license.txt, distributed as part of this software.
8
8
----------------------------------------------------------------------------------~(*)
9
9
"""
10
+
10
11
import numpy as np
11
12
from pylsl import XMLElement
12
13
@@ -189,8 +190,8 @@ def make_extract_normpos(dim):
189
190
190
191
191
192
def make_extract_gaze_point_3d (dim ):
192
- return (
193
- lambda gaze : gaze ["gaze_point_3d" ][dim ] if "gaze_point_3d" in gaze else np .nan
193
+ return lambda gaze : (
194
+ gaze ["gaze_point_3d" ][dim ] if "gaze_point_3d" in gaze else np .nan
194
195
)
195
196
196
197
Original file line number Diff line number Diff line change 7
7
License details are in the file license.txt, distributed as part of this software.
8
8
----------------------------------------------------------------------------------~(*)
9
9
"""
10
+
10
11
from .channel import (
11
12
confidence_channel ,
12
13
fixation_dispersion_channel ,
Original file line number Diff line number Diff line change 7
7
License details are in the file license.txt, distributed as part of this software.
8
8
----------------------------------------------------------------------------------~(*)
9
9
"""
10
+
10
11
from .channel import (
11
12
confidence_channel ,
12
13
diameter_2d_channels ,
Original file line number Diff line number Diff line change 7
7
License details are in the file license.txt, distributed as part of this software.
8
8
----------------------------------------------------------------------------------~(*)
9
9
"""
10
+
10
11
import abc
11
12
import logging
12
13
from typing import Optional , Sequence
Original file line number Diff line number Diff line change 7
7
License details are in the file license.txt, distributed as part of this software.
8
8
----------------------------------------------------------------------------------~(*)
9
9
"""
10
+
10
11
from .channel import (
11
12
confidence_channel ,
12
13
diameter_2d_channels ,
You can’t perform that action at this time.
0 commit comments