diff options
author | Théo de la Hogue | 2024-03-11 09:12:20 +0100 |
---|---|---|
committer | Théo de la Hogue | 2024-03-11 09:12:20 +0100 |
commit | 2f4b9934a5cb60b43bb5f378056c10a39aec279d (patch) | |
tree | 9a6b5e30170042b62a743dbb42e08715d5608a49 | |
parent | 44e20f1ef747daab78220f674fc485014f61511f (diff) | |
download | argaze-2f4b9934a5cb60b43bb5f378056c10a39aec279d.zip argaze-2f4b9934a5cb60b43bb5f378056c10a39aec279d.tar.gz argaze-2f4b9934a5cb60b43bb5f378056c10a39aec279d.tar.bz2 argaze-2f4b9934a5cb60b43bb5f378056c10a39aec279d.tar.xz |
Removing useless dataclass word.
-rw-r--r-- | src/argaze/GazeAnalysis/VelocityThresholdIdentification.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py index fef1fbd..b2e3b89 100644 --- a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py +++ b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py @@ -103,7 +103,6 @@ class Saccade(GazeFeatures.Saccade): cv2.line(image, (int(start_position[0]), int(start_position[1])), (int(last_position[0]), int(last_position[1])), line_color, 2) -@dataclass class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier): """Implementation of the I-VT algorithm as described in: |