@@ -165,15 +165,15 @@ def __init__(self,
165
165
sometimes, when the eyetracker loses signal, no entry in the EDF is made;
166
166
when this option is True, such entries will be made and the signal set to 0 there
167
167
"""
168
- self .sy = np .array (pupil , dtype = np . float )
168
+ self .sy = np .array (pupil , dtype = float )
169
169
if sampling_rate is None and time is None :
170
170
raise ValueError ("you have to specify either sampling_rate or time-vector (or both)" )
171
171
172
172
if time is None :
173
173
maxT = len (self )/ sampling_rate * 1000.
174
174
self .tx = np .linspace (0 ,maxT , num = len (self ))
175
175
else :
176
- self .tx = np .array (time , dtype = np . float )
176
+ self .tx = np .array (time , dtype = float )
177
177
178
178
if sampling_rate is None :
179
179
self .fs = np .round (1000. / np .median (np .diff (self .tx )))
@@ -216,9 +216,9 @@ def __init__(self,
216
216
self .sy = nsy
217
217
218
218
if event_onsets is None :
219
- self .event_onsets = np .array ([], dtype = np . float )
219
+ self .event_onsets = np .array ([], dtype = float )
220
220
else :
221
- self .event_onsets = np .array (event_onsets , dtype = np . float )
221
+ self .event_onsets = np .array (event_onsets , dtype = float )
222
222
223
223
# check whether onsets are in range
224
224
for onset in self .event_onsets :
@@ -253,12 +253,12 @@ def __init__(self,
253
253
self .response_estimated = False
254
254
255
255
## initialize blinks
256
- self .blinks = np .empty ((0 ,2 ), dtype = np . int )
257
- self .blink_mask = np .zeros (len (self ), dtype = np . int )
256
+ self .blinks = np .empty ((0 ,2 ), dtype = int )
257
+ self .blink_mask = np .zeros (len (self ), dtype = int )
258
258
259
259
## interpolated mask
260
- self .interpolated_mask = np .zeros (len (self ), dtype = np . int )
261
- self .missing = np .zeros (len (self ), dtype = np . int )
260
+ self .interpolated_mask = np .zeros (len (self ), dtype = int )
261
+ self .missing = np .zeros (len (self ), dtype = int )
262
262
self .missing [self .sy == 0 ]= 1
263
263
264
264
self .original = None
@@ -364,8 +364,8 @@ def sub_slice(self, start: float=-np.inf, end: float=np.inf, units: str="sec"):
364
364
slic .event_onsets = slic .event_onsets [keepev ]
365
365
slic .event_labels = slic .event_labels [keepev ]
366
366
## just remove all detected blinks (need to rerun `detect_blinks()`)
367
- slic .blinks = np .empty ((0 ,2 ), dtype = np . int )
368
- slic .blink_mask = np .zeros (len (slic ), dtype = np . int )
367
+ slic .blinks = np .empty ((0 ,2 ), dtype = int )
368
+ slic .blink_mask = np .zeros (len (slic ), dtype = int )
369
369
return slic
370
370
371
371
def summary (self ) -> dict :
@@ -596,8 +596,8 @@ def _plot(self, plot_range, overlays, overlay_labels, units, interactive, highli
596
596
overlays = (ov [startix :endix ] for ov in overlays )
597
597
598
598
if interactive :
599
- blinks = np .empty ((0 ,2 ), dtype = np . int )
600
- interpolated = np .empty ((0 ,2 ), dtype = np . int )
599
+ blinks = np .empty ((0 ,2 ), dtype = int )
600
+ interpolated = np .empty ((0 ,2 ), dtype = int )
601
601
if highlight_blinks :
602
602
blinks = []
603
603
for sblink ,eblink in self .blinks :
@@ -966,7 +966,7 @@ def blinks_detect(self, min_duration:float=20, blink_val:float=0,
966
966
blinks = helper_merge_blinks (blinks_vel , blinks_zero )
967
967
obj .blinks = np .array ([[on ,off ] for (on ,off ) in blinks if off - on >= min_duration_ix ])
968
968
969
- obj .blink_mask = np .zeros (self .sy .size , dtype = np . int )
969
+ obj .blink_mask = np .zeros (self .sy .size , dtype = int )
970
970
971
971
for start ,end in obj .blinks :
972
972
obj .blink_mask [start :end ]= 1
0 commit comments