aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/user_guide/utils/demonstrations_scripts.md30
1 files changed, 28 insertions, 2 deletions
diff --git a/docs/user_guide/utils/demonstrations_scripts.md b/docs/user_guide/utils/demonstrations_scripts.md
index a230678..026bbef 100644
--- a/docs/user_guide/utils/demonstrations_scripts.md
+++ b/docs/user_guide/utils/demonstrations_scripts.md
@@ -16,8 +16,9 @@ Load ArFrame with a single ArLayer from **demo_gaze_analysis_setup.json** file t
```shell
python ./src/argaze/utils/context_run.py ./src/argaze/utils/demo/opencv_window_context_setup.json
```
+## Tobii Pro Glasses 2
-## Tobii live stream context demonstration
+### Tobii live stream context
!!! note
this demonstration requires to print **A3_demo.pdf** file located in *./src/argaze/utils/demo_data/* folder on A3 paper sheet.
@@ -42,7 +43,6 @@ Edit **tobii_live_stream_context_setup.json** file as below with your own parame
},
"pipeline": "aruco_markers_pipeline.json",
"image_parameters": {
- "draw_something": false,
"draw_times": true,
"draw_exceptions": true
}
@@ -56,3 +56,29 @@ Then, execute this command:
python ./src/argaze/utils/context_run.py ./src/argaze/utils/demo/tobii_live_stream_context_setup.json
```
+### Tobii post-processing context
+
+!!! note
+ this demonstration requires to print **A3_demo.pdf** file located in *./src/argaze/utils/demo_data/* folder on A3 paper sheet.
+
+Edit **tobii_post_processing_context_setup.json** file as below with your own parameters values:
+
+```json
+{
+ "argaze.utils.contexts.TobiiProGlasses2.PostProcessing" : {
+ "name": "Tobii Pro Glasses 2 post-processing",
+ "segment": "record/segments/1",
+ "pipeline": "aruco_markers_pipeline.json",
+ "image_parameters": {
+ "draw_times": true,
+ "draw_exceptions": true
+ }
+ }
+}
+```
+
+Then, execute this command:
+
+```shell
+python ./src/argaze/utils/context_run.py ./src/argaze/utils/demo/tobii_post_processing_context_setup.json
+```