aboutsummaryrefslogtreecommitdiff
path: root/docs/use_cases/air_controller_gaze_study/context.md
diff options
context:
space:
mode:
authorThéo de la Hogue2024-07-08 12:05:42 +0200
committerThéo de la Hogue2024-07-08 12:05:42 +0200
commitfecf8b7a54d729d528ba1ab599a9c4b48fdde953 (patch)
tree7d6539ce97310300f84772e6045f789ccf144a32 /docs/use_cases/air_controller_gaze_study/context.md
parentf6653bcd024caad8fc6070a6b0a306e0625bd8b2 (diff)
downloadargaze-fecf8b7a54d729d528ba1ab599a9c4b48fdde953.zip
argaze-fecf8b7a54d729d528ba1ab599a9c4b48fdde953.tar.gz
argaze-fecf8b7a54d729d528ba1ab599a9c4b48fdde953.tar.bz2
argaze-fecf8b7a54d729d528ba1ab599a9c4b48fdde953.tar.xz
Adding new use case.
Diffstat (limited to 'docs/use_cases/air_controller_gaze_study/context.md')
-rw-r--r--docs/use_cases/air_controller_gaze_study/context.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/use_cases/air_controller_gaze_study/context.md b/docs/use_cases/air_controller_gaze_study/context.md
new file mode 100644
index 0000000..ca9adf7
--- /dev/null
+++ b/docs/use_cases/air_controller_gaze_study/context.md
@@ -0,0 +1,22 @@
+Live streaming context
+======================
+
+The context handles incoming eye tracker data before to pass them to a processing pipeline.
+
+## post_processing_context.json
+
+For this use case we need to read Tobii Pro Glasses 2 records: **ArGaze** provides a [ready-made context](../../user_guide/eye_tracking_context/context_modules/tobii_pro_glasses_2.md) class to read data from records made by this device.
+
+While *segment* entries are specific to the [TobiiProGlasses2.PostProcessing](../../argaze.md/#argaze.utils.contexts.TobiiProGlasses2.PostProcessing) class, *name* and *pipeline* entries are part of the parent [ArContext](../../argaze.md/#argaze.ArFeatures.ArContext) class.
+
+```json
+{
+ "argaze.utils.contexts.TobiiProGlasses2.PostProcessing": {
+ "name": "Tobii Pro Glasses 2 post-processing",
+ "segment": "/Volumes/projects/fbr6k3e/records/4rcbdzk/segments/1",
+ "pipeline": "post_processing_pipeline.json"
+ }
+}
+```
+
+The [post_processing_pipeline.json](pipeline.md) file mentioned aboved is described in the next chapter.