aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze/GazeAnalysis/VelocityThresholdIdentification.py')
-rw-r--r--src/argaze/GazeAnalysis/VelocityThresholdIdentification.py16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
index fa38edf..c315b8c 100644
--- a/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
+++ b/src/argaze/GazeAnalysis/VelocityThresholdIdentification.py
@@ -1,12 +1,6 @@
#!/usr/bin/env python
-"""Implementation of the I-VT algorithm as described in:
-
- **Dario D. Salvucci and Joseph H. Goldberg (2000).**
- *Identifying fixations and saccades in eye-tracking protocols.*
- In Proceedings of the 2000 symposium on Eye tracking research & applications (ETRA'00, 71-78).
- [https://doi.org/10.1145/355017.355028](https://doi.org/10.1145/355017.355028)
-"""
+"""Velocity threshold identification (I-VT) module."""
__author__ = "Théo de la Hogue"
__credits__ = []
@@ -103,10 +97,10 @@ class Saccade(GazeFeatures.Saccade):
class GazeMovementIdentifier(GazeFeatures.GazeMovementIdentifier):
"""Implementation of the I-VT algorithm as described in:
- Dario D. Salvucci and Joseph H. Goldberg. 2000. Identifying fixations and
- saccades in eye-tracking protocols. In Proceedings of the 2000 symposium
- on Eye tracking research & applications (ETRA '00). ACM, New York, NY, USA,
- 71-78. [http://dx.doi.org/10.1145/355017.355028](http://dx.doi.org/10.1145/355017.355028)
+ Dario D. Salvucci and Joseph H. Goldberg. 2000. Identifying fixations and
+ saccades in eye-tracking protocols. In Proceedings of the 2000 symposium
+ on Eye tracking research & applications (ETRA '00). ACM, New York, NY, USA,
+ 71-78. [http://dx.doi.org/10.1145/355017.355028](http://dx.doi.org/10.1145/355017.355028)
"""
velocity_max_threshold: int|float