aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
diff options
context:
space:
mode:
authorThéo de la Hogue2023-08-29 14:20:04 +0200
committerThéo de la Hogue2023-08-29 14:20:04 +0200
commit551bc84879eaa1e04176f5a61dc48d9b981d03ac (patch)
tree4c45c2952eee990a8760bd04fd9b8fdf05c56ab9 /docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
parent9d032ca858646f985de27c16d9acc62ac1f51c92 (diff)
downloadargaze-551bc84879eaa1e04176f5a61dc48d9b981d03ac.zip
argaze-551bc84879eaa1e04176f5a61dc48d9b981d03ac.tar.gz
argaze-551bc84879eaa1e04176f5a61dc48d9b981d03ac.tar.bz2
argaze-551bc84879eaa1e04176f5a61dc48d9b981d03ac.tar.xz
Adding user guide section about gaze analysis pipeline modules.
Diffstat (limited to 'docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md')
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md b/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
new file mode 100644
index 0000000..6ae66bf
--- /dev/null
+++ b/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
@@ -0,0 +1,29 @@
+Gaze movement identifiers
+=========================
+
+ArGaze provides ready-to-use gaze movement identification algorithms.
+
+Here are JSON samples to include a chosen module inside [ArFrame configuration](../ar_frame_configuration_and_execution.md) *gaze_movement_identifier* entry.
+
+## Dispersion threshold identification (I-DT)
+
+```json
+"DispersionThresholdIdentification": {
+ "deviation_max_threshold": 50,
+ "duration_min_threshold": 200
+}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.DispersionThresholdIdentification.GazeMovementIdentifier)
+
+## Velocity threshold identification (I-VT)
+
+```json
+"VelocityThresholdIdentification": {
+ "velocity_max_threshold": 10,
+ "duration_min_threshold": 200
+}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.VelocityThresholdIdentification.GazeMovementIdentifier)
+