aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2022-11-30 14:52:39 +0100
committerThéo de la Hogue2022-11-30 14:52:39 +0100
commit9af87302135f492274e953b84119105a81660af8 (patch)
tree480f3cf5fefc3386e3db7bbe6dbab11881d6fbfe
parente26dc74f080891b9a521b19a1150bf4a0d10e425 (diff)
downloadargaze-9af87302135f492274e953b84119105a81660af8.zip
argaze-9af87302135f492274e953b84119105a81660af8.tar.gz
argaze-9af87302135f492274e953b84119105a81660af8.tar.bz2
argaze-9af87302135f492274e953b84119105a81660af8.tar.xz
Removing inconsistencies printing.
-rw-r--r--src/argaze/utils/tobii_segment_arscene_export.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/argaze/utils/tobii_segment_arscene_export.py b/src/argaze/utils/tobii_segment_arscene_export.py
index 7bbef59..288cc51 100644
--- a/src/argaze/utils/tobii_segment_arscene_export.py
+++ b/src/argaze/utils/tobii_segment_arscene_export.py
@@ -142,11 +142,7 @@ def main():
cv.rectangle(video_frame.matrix, (int(video_frame.width*(1 - 1/6)), 0), (int(video_frame.width), int(video_frame.height)), (0, 0, 0), -1)
# Project scene into frame
- scene_projection, unconsistencies = ar_scene.project(video_frame.matrix, consistent_markers_number=1, visual_hfov=TobiiSpecifications.VISUAL_HFOV)
-
- # DEBUG: print unconsistencies distances or angles
- for key, value in unconsistencies.items():
- print(f'{video_ts}: Unconsistent {key}: {value}')
+ scene_projection = ar_scene.project(video_frame.matrix, consistent_markers_number=1, visual_hfov=TobiiSpecifications.VISUAL_HFOV)
# Store all projected aoi
for aoi_name in scene_projection.keys():