oskarastrom commited on
Commit
3fa5151
·
1 Parent(s): e0e0ed4

Update fish_length.py

Browse files
Files changed (1) hide show
  1. lib/fish_eye/fish_length.py +2 -0
lib/fish_eye/fish_length.py CHANGED
@@ -10,6 +10,8 @@ class Fish_Length:
10
 
11
  @staticmethod
12
  def quantile_length(tracks, constant, aux=-1):
 
 
13
  return [np.quantile(track[2] - track[0], aux)*constant for track in tracks]
14
 
15
  @staticmethod
 
10
 
11
  @staticmethod
12
  def quantile_length(tracks, constant, aux=-1):
13
+ t = tracks[0]
14
+ print(t[2] - t[0])
15
  return [np.quantile(track[2] - track[0], aux)*constant for track in tracks]
16
 
17
  @staticmethod