diff options
author | Théo de la Hogue | 2023-09-20 16:57:43 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-09-20 16:57:43 +0200 |
commit | 1f36c34242791145a1b33dd17cf351018456310f (patch) | |
tree | 3fa81bb9d3826df1edb4cc2c0b9f0ac819b4c918 /docs/user_guide | |
parent | 81cce96dec4f24bd067a2a98e67855a27ea6f704 (diff) | |
download | argaze-1f36c34242791145a1b33dd17cf351018456310f.zip argaze-1f36c34242791145a1b33dd17cf351018456310f.tar.gz argaze-1f36c34242791145a1b33dd17cf351018456310f.tar.bz2 argaze-1f36c34242791145a1b33dd17cf351018456310f.tar.xz |
Removing useless chapter
Diffstat (limited to 'docs/user_guide')
-rw-r--r-- | docs/user_guide/aruco_markers_pipeline/aoi_analysis.md | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/docs/user_guide/aruco_markers_pipeline/aoi_analysis.md b/docs/user_guide/aruco_markers_pipeline/aoi_analysis.md deleted file mode 100644 index 05afcd3..0000000 --- a/docs/user_guide/aruco_markers_pipeline/aoi_analysis.md +++ /dev/null @@ -1,58 +0,0 @@ -Add AOI analysis -================ - - - -## Add AOIMatcher, AOIScanPath and AOIScanPathAnalyzers to ArUcoCamera layer to enable gaze analysis - -Here is the previous extract where AOI matcher, AOI scan path and AOI scan path analyzers are added to the [ArUcoCamera](../../argaze.md/#argaze.ArUcoMarkers.ArUcoCamera) layer: - -```json -{ - "name": "My FullHD camera", - "size": [1920, 1080], - ... - "scenes": { - "MyScene" : { - "aruco_markers_group": { - ... - }, - "layers": { - "MyLayer": { - "aoi_scene": { - ... - } - } - } - } - }, - "layers": { - "MyLayer": { - "aoi_matcher": { - "DeviationCircleCoverage": { - "coverage_threshold": 0.5 - } - }, - "aoi_scan_path": { - "duration_max": 30000 - }, - "aoi_scan_path_analyzers": { - "Basic": {}, - "TransitionMatrix": {}, - "NGram": { - "n_min": 3, - "n_max": 5 - } - } - } - }, - "gaze_movement_identifier": { - ... - } - ... -} -``` - -!!! warning - - Adding scan path and scan path analyzers to [an ArUcoCamera](../../argaze.md/#argaze.ArUcoMarkers.ArUcoCamera) layer doesn't make sense if the camera is moving.
\ No newline at end of file |