diff options
author | Théo de la Hogue | 2023-09-26 12:47:23 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-09-26 12:47:23 +0200 |
commit | b7b9b3ed2149b3bf66b7192b71bdf0bf6ce7dedf (patch) | |
tree | 54509092b1d0178663ce6458c81c45e7b81f97f9 | |
parent | 69bcadf8f7b969ddd0fb284e86788cd658b897ab (diff) | |
download | argaze-b7b9b3ed2149b3bf66b7192b71bdf0bf6ce7dedf.zip argaze-b7b9b3ed2149b3bf66b7192b71bdf0bf6ce7dedf.tar.gz argaze-b7b9b3ed2149b3bf66b7192b71bdf0bf6ce7dedf.tar.bz2 argaze-b7b9b3ed2149b3bf66b7192b71bdf0bf6ce7dedf.tar.xz |
Updating drawing options changes.
-rw-r--r-- | docs/user_guide/gaze_analysis_pipeline/visualisation.md | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/docs/user_guide/gaze_analysis_pipeline/visualisation.md b/docs/user_guide/gaze_analysis_pipeline/visualisation.md index 99f0259..c9cbf2c 100644 --- a/docs/user_guide/gaze_analysis_pipeline/visualisation.md +++ b/docs/user_guide/gaze_analysis_pipeline/visualisation.md @@ -25,8 +25,7 @@ Here is an extract from the JSON ArFrame configuration file with a sample where }, "draw_saccades": { "line_color": [255, 0, 255] - }, - "deepness": 0 + } }, "draw_layers": { "MyLayer": { @@ -38,11 +37,11 @@ Here is an extract from the JSON ArFrame configuration file with a sample where }, "draw_aoi_matching": { "draw_matched_fixation": { - "deviation_circle_color": [255, 255, 255] - }, - "draw_matched_fixation_positions": { - "position_color": [0, 255, 255], - "line_color": [0, 0, 0] + "deviation_circle_color": [255, 255, 255], + "draw_positions": { + "position_color": [0, 255, 0], + "line_color": [0, 0, 0] + } }, "draw_matched_region": { "color": [0, 255, 0], @@ -57,6 +56,18 @@ Here is an extract from the JSON ArFrame configuration file with a sample where } } }, + "draw_fixations": { + "deviation_circle_color": [255, 255, 255], + "duration_border_color": [127, 0, 127], + "duration_factor": 1e-2, + "draw_positions": { + "position_color": [0, 255, 255], + "line_color": [0, 0, 0] + } + }, + "draw_saccades": { + "line_color": [255, 0, 255] + }, "draw_gaze_positions": { "color": [0, 255, 255], "size": 2 |