From 551bc84879eaa1e04176f5a61dc48d9b981d03ac Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 29 Aug 2023 14:20:04 +0200 Subject: Adding user guide section about gaze analysis pipeline modules. --- .../pipeline_modules/gaze_movement_identifiers.md | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md (limited to 'docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md') 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) + -- cgit v1.1