aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThéo de la Hogue2023-05-31 16:03:02 +0200
committerThéo de la Hogue2023-05-31 16:03:02 +0200
commit9773ae5a0811f56950a062fbd8b3063e5698d02a (patch)
tree806713178c1a8379a317572402943c24d521d3b1 /src
parentf861c25ed56bf3204188ecc9170feb21e613794e (diff)
downloadargaze-9773ae5a0811f56950a062fbd8b3063e5698d02a.zip
argaze-9773ae5a0811f56950a062fbd8b3063e5698d02a.tar.gz
argaze-9773ae5a0811f56950a062fbd8b3063e5698d02a.tar.bz2
argaze-9773ae5a0811f56950a062fbd8b3063e5698d02a.tar.xz
Improve comments.
Diffstat (limited to 'src')
-rw-r--r--src/argaze/GazeAnalysis/VelocityThresholdIdentification.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
index 4c97c4c..4883eb0 100644
--- a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
+++ b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
@@ -146,16 +146,18 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier):
# Check if too much time elapsed since last gaze position
if (ts - self.__last_ts) > self.duration_min_threshold:
- # Clear all former gaze positions
+ # Remember last position
self.__last_ts = ts
self.__last_position = gaze_position
# Get last movement
last_movement = self.current_saccade if len(self.__fixation_positions) == 0 else self.current_fixation
+ # Clear all former gaze positions
self.__fixation_positions = GazeFeatures.TimeStampedGazePositions()
self.__saccade_positions = GazeFeatures.TimeStampedGazePositions()
+ # Return last valid movement if exist
return last_movement
# Velocity