aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/argaze/ArFeatures.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py
index a67ffe9..6727928 100644
--- a/src/argaze/ArFeatures.py
+++ b/src/argaze/ArFeatures.py
@@ -255,16 +255,15 @@ class ArFrame():
try:
new_aoi_scan_path_data = frame_data.pop('aoi_scan_path')
+ new_aoi_scan_path_data['expected_aois'] = list(new_aoi_2d_scene.keys())
new_aoi_scan_path = GazeFeatures.AOIScanPath(**new_aoi_scan_path_data)
except KeyError:
new_aoi_scan_path_data = {}
+ new_aoi_scan_path_data['expected_aois'] = list(new_aoi_2d_scene.keys())
new_aoi_scan_path = None
- # Append expected AOI to AOI scan path data
- new_aoi_scan_path_data['expected_aois'] = list(new_aoi_2d_scene.keys())
-
# Load AOI scan path analyzers
new_aoi_scan_path_analyzers = {}