aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/ArFeatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze/ArFeatures.py')
-rw-r--r--src/argaze/ArFeatures.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/argaze/ArFeatures.py b/src/argaze/ArFeatures.py
index 0750cb5..122efe8 100644
--- a/src/argaze/ArFeatures.py
+++ b/src/argaze/ArFeatures.py
@@ -96,7 +96,7 @@ DEFAULT_ARLAYER_DRAW_PARAMETERS = {
@dataclass
class ArLayer():
"""
- Defines a space where to make matching of gaze movements and AOIs and inside which those matchings need to be analyzed.
+ Defines a space where to make matching of gaze movements and AOI and inside which those matchings need to be analyzed.
Parameters:
name: name of the layer
@@ -203,10 +203,10 @@ class ArLayer():
new_aoi_scene = AOI2DScene.AOI2DScene()
# Edit expected AOI list by removing AOI with name equals to layer name
- expected_aois = list(new_aoi_scene.keys())
+ expected_aoi = list(new_aoi_scene.keys())
- if new_layer_name in expected_aois:
- expected_aois.remove(new_layer_name)
+ if new_layer_name in expected_aoi:
+ expected_aoi.remove(new_layer_name)
# Load aoi matcher
try:
@@ -230,13 +230,13 @@ class ArLayer():
try:
new_aoi_scan_path_data = layer_data.pop('aoi_scan_path')
- new_aoi_scan_path_data['expected_aois'] = expected_aois
+ new_aoi_scan_path_data['expected_aoi'] = expected_aoi
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'] = expected_aois
+ new_aoi_scan_path_data['expected_aoi'] = expected_aoi
new_aoi_scan_path = None
# Load AOI scan path analyzers
@@ -1208,7 +1208,7 @@ class ArScene():
# Check that the frame have a layer named like this scene layer
aoi_2d_scene = new_frame.layers[scene_layer_name].aoi_scene
- # Transform 2D frame layer AOIs into 3D scene layer AOIs
+ # Transform 2D frame layer AOI into 3D scene layer AOI
# Then, add them to scene layer
scene_layer.aoi_scene |= aoi_2d_scene.dimensionalize(frame_3d, new_frame.size)
@@ -1228,12 +1228,12 @@ class ArScene():
if frame_layer.aoi_scan_path is not None:
# Edit expected AOI list by removing AOI with name equals to frame layer name
- expected_aois = list(layer.aoi_scene.keys())
+ expected_aoi = list(layer.aoi_scene.keys())
- if frame_layer_name in expected_aois:
- expected_aois.remove(frame_layer_name)
+ if frame_layer_name in expected_aoi:
+ expected_aoi.remove(frame_layer_name)
- frame_layer.aoi_scan_path.expected_aois = expected_aois
+ frame_layer.aoi_scan_path.expected_aoi = expected_aoi
except KeyError:
@@ -1353,7 +1353,7 @@ class ArCamera(ArFrame):
continue
- layer.aoi_scan_path.expected_aois = all_aoi_list
+ layer.aoi_scan_path.expected_aoi = all_aoi_list
# Init a lock to share scene projections into camera frame between multiple threads
self._frame_lock = threading.Lock()