aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
diff options
context:
space:
mode:
authorThéo de la Hogue2023-09-27 18:02:34 +0200
committerThéo de la Hogue2023-09-27 18:02:34 +0200
commitfbf4c80b9e7dabb6e2bbcb94df44e627de5646dc (patch)
tree1c7f0984c3b84a6db1511b555e9734afe9bee4de /docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
parent1a0dc73d98fdbe0d45523ca3ac914928b0ae775a (diff)
downloadargaze-fbf4c80b9e7dabb6e2bbcb94df44e627de5646dc.zip
argaze-fbf4c80b9e7dabb6e2bbcb94df44e627de5646dc.tar.gz
argaze-fbf4c80b9e7dabb6e2bbcb94df44e627de5646dc.tar.bz2
argaze-fbf4c80b9e7dabb6e2bbcb94df44e627de5646dc.tar.xz
Updating illustrations.
Diffstat (limited to 'docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md')
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md b/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
index 0d5dbf0..ad8ee74 100644
--- a/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
+++ b/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
@@ -19,9 +19,9 @@ SVG file format could be exported from most vector graphics editors.
``` xml
<svg>
- <path id="Triangle" d="M960,664L1113,971L806,971L960,664Z"/>
- <rect id="RedSquare" x="268" y="203" width="308" height="308"/>
- <circle id="GreenCircle" cx="1497" cy="356" r="153"/>
+ <path id="GeoSector" d="M860,160L1380,100L1660,400L1380,740L1440,960L920,920L680,800L640,560L860,160Z"/>
+ <rect id="LeftPanel" x="0" y="0" width="350" height="1080"/>
+ <circle id="CircularWidget" cx="1800" cy="120" r="80"/>
</svg>
```
@@ -37,20 +37,20 @@ JSON file format allows to describe AOI.
``` json
{
- "BlueTriangle":[[960, 664], [1113, 971], [806, 971]],
- "RedSquare": {
+ "GeoSector": [[860, 160], [1380, 100], [1660, 400], [1380, 740], [1440, 960], [920, 920], [680, 800], [640, 560]],
+ "LeftPanel": {
"Rectangle": {
- "x": 268,
- "y": 203,
- "width": 308,
- "height": 308
+ "x": 0,
+ "y": 0,
+ "width": 350,
+ "height": 1080
}
},
- "GreenCircle": {
+ "CircularWidget": {
"Circle": {
- "cx": 1497,
- "cy": 356,
- "radius": 153
+ "cx": 1800,
+ "cy": 120,
+ "radius": 80
}
}
}