From 1f36c34242791145a1b33dd17cf351018456310f Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 20 Sep 2023 16:57:43 +0200 Subject: Removing useless chapter --- .../aruco_markers_pipeline/aoi_analysis.md | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 docs/user_guide/aruco_markers_pipeline/aoi_analysis.md (limited to 'docs') 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 -- cgit v1.1