aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/utils/demonstrations_scripts.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/user_guide/utils/demonstrations_scripts.md')
-rw-r--r--docs/user_guide/utils/demonstrations_scripts.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/docs/user_guide/utils/demonstrations_scripts.md b/docs/user_guide/utils/demonstrations_scripts.md
index a162a49..16b209f 100644
--- a/docs/user_guide/utils/demonstrations_scripts.md
+++ b/docs/user_guide/utils/demonstrations_scripts.md
@@ -14,16 +14,16 @@ Collection of command-line scripts for demonstration purpose.
Load ArFrame with a single ArLayer from **demo_gaze_analysis_setup.json** file then, simulate gaze position using mouse pointer to illustrate gaze features.
```shell
-python -m argaze ./src/argaze/utils/demo/opencv_window_context_setup.json
+python -m argaze ./src/argaze/utils/demo/opencv_window_context.json
```
## Tobii Pro Glasses 2
### 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.
+ this demonstration requires to print **A3_demo.pdf** file located in *./src/argaze/utils/demo/* folder on A3 paper sheet.
-Edit **tobii_live_stream_context_setup.json** file as below with your own parameters values:
+Edit **tobii_live_stream_context.json** file as below with your own parameters values:
```json
{
@@ -42,6 +42,7 @@ Edit **tobii_live_stream_context_setup.json** file as below with your own parame
"sys_mems_freq": 100
},
"pipeline": "aruco_markers_pipeline.json",
+ "catch_exceptions": true,
"image_parameters": {
"draw_times": true,
"draw_exceptions": true
@@ -53,15 +54,15 @@ Edit **tobii_live_stream_context_setup.json** file as below with your own parame
Then, execute this command:
```shell
-python -m argaze ./src/argaze/utils/demo/tobii_live_stream_context_setup.json
+python -m argaze ./src/argaze/utils/demo/tobii_live_stream_context.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.
+ this demonstration requires to print **A3_demo.pdf** file located in *./src/argaze/utils/demo/* folder on A3 paper sheet.
-Edit **tobii_post_processing_context_setup.json** file as below with your own parameters values:
+Edit **tobii_post_processing_context.json** file as below with your own parameters values:
```json
{
@@ -69,6 +70,7 @@ Edit **tobii_post_processing_context_setup.json** file as below with your own pa
"name": "Tobii Pro Glasses 2 post-processing",
"segment": "record/segments/1",
"pipeline": "aruco_markers_pipeline.json",
+ "catch_exceptions": true,
"image_parameters": {
"draw_times": true,
"draw_exceptions": true
@@ -80,5 +82,5 @@ Edit **tobii_post_processing_context_setup.json** file as below with your own pa
Then, execute this command:
```shell
-python -m argaze ./src/argaze/utils/demo/tobii_post_processing_context_setup.json
+python -m argaze ./src/argaze/utils/demo/tobii_post_processing_context.json
```