aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.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/scan_path_analyzers.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/scan_path_analyzers.md')
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.md b/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.md
new file mode 100644
index 0000000..29ee4f2
--- /dev/null
+++ b/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.md
@@ -0,0 +1,40 @@
+Scan path analyzers
+===================
+
+ArGaze provides ready-to-use scan path analysis algorithms.
+
+Here are JSON samples to include a chosen module inside [ArFrame configuration](../ar_frame_configuration_and_execution.md) *scan_path_analyzers* entry.
+
+## Basic metrics
+
+```json
+"Basic": {}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.Basic.ScanPathAnalyzer)
+
+## Exploit/Explore ratio
+
+```json
+"ExploitExploreRatio": {
+ "short_fixation_duration_threshold": 0
+}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.ExploitExploreRatio.ScanPathAnalyzer)
+
+## K coefficient
+
+```json
+"KCoefficient": {}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.KCoefficient.ScanPathAnalyzer)
+
+## Nearest neighbor index
+
+```json
+"NearestNeighborIndex": {}
+```
+
+[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.NearestNeighborIndex.ScanPathAnalyzer) \ No newline at end of file