aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2023-09-26 12:28:34 +0200
committerThéo de la Hogue2023-09-26 12:28:34 +0200
commit69bcadf8f7b969ddd0fb284e86788cd658b897ab (patch)
tree48c6fb53f884f351a94f989350bf1fa7fc9317e8
parent1f16bf5c37b5fb5d44ed33d78f03e6fdeeac4013 (diff)
downloadargaze-69bcadf8f7b969ddd0fb284e86788cd658b897ab.zip
argaze-69bcadf8f7b969ddd0fb284e86788cd658b897ab.tar.gz
argaze-69bcadf8f7b969ddd0fb284e86788cd658b897ab.tar.bz2
argaze-69bcadf8f7b969ddd0fb284e86788cd658b897ab.tar.xz
Updating JSON AOI 2D description documentation.
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md39
1 files changed, 11 insertions, 28 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 7229a9d..0d5dbf0 100644
--- a/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
+++ b/docs/user_guide/gaze_analysis_pipeline/aoi_2d_description.md
@@ -19,11 +19,9 @@ SVG file format could be exported from most vector graphics editors.
``` xml
<svg>
- <path id="Triangle" d="M1288.1,189.466L1991.24,3399.34L584.958,3399.34L1288.1,189.466Z"/>
- <rect id="BlueRectangle" x="1257" y="1905.18" width="604.169" height="988.564"/>
- <rect id="RedSquare" x="623.609" y="658.357" width="803.15" height="803.577"/>
- <circle id="GreenCircle" cx="675.77" cy="2163.5" r="393.109"/>
- <circle id="PinkCircle" cx="1902.02" cy="879.316" r="195.313"/>
+ <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"/>
</svg>
```
@@ -39,36 +37,21 @@ JSON file format allows to describe AOI.
``` json
{
- "Triangle" : [[1288.1, 189.466], [1991.24, 3399.34], [584.958, 3399.34]],
- "BlueRectangle": {
- "Rectangle": {
- "x": 1257,
- "y": 1905.18,
- "width": 604.169,
- "height": 988.564
- }
- },
+ "BlueTriangle":[[960, 664], [1113, 971], [806, 971]],
"RedSquare": {
"Rectangle": {
- "x": 623.609,
- "y": 658.357,
- "width": 803.15,
- "height": 803.15
+ "x": 268,
+ "y": 203,
+ "width": 308,
+ "height": 308
}
},
"GreenCircle": {
"Circle": {
- "cx": 675.77,
- "cy": 2163.5,
- "radius": 393.109
+ "cx": 1497,
+ "cy": 356,
+ "radius": 153
}
- },
- "PinkCircle": {
- "Circle": {
- "cx": 1902.02,
- "cy": 879.316,
- "radius": 195.313
- }
}
}
```