diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/GazeAnalysis/DispersionThresholdIdentification.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/argaze/GazeAnalysis/DispersionThresholdIdentification.py b/src/argaze/GazeAnalysis/DispersionThresholdIdentification.py index 111d1c3..13e37dc 100644 --- a/src/argaze/GazeAnalysis/DispersionThresholdIdentification.py +++ b/src/argaze/GazeAnalysis/DispersionThresholdIdentification.py @@ -17,6 +17,7 @@ __credits__ = [] __copyright__ = "Copyright 2023, Ecole Nationale de l'Aviation Civile (ENAC)" __license__ = "GPLv3" +import logging import math from argaze import GazeFeatures, DataFeatures @@ -200,6 +201,8 @@ class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): deviation_max = max(self.__deviations) + logging.debug("%s: deviation_max %f", DataFeatures.get_class_path(self), deviation_max) + # Maximal deviation small enough if deviation_max <= self.__deviation_max_threshold: |