diff options
author | Théo de la Hogue | 2022-11-30 14:52:39 +0100 |
---|---|---|
committer | Théo de la Hogue | 2022-11-30 14:52:39 +0100 |
commit | 9af87302135f492274e953b84119105a81660af8 (patch) | |
tree | 480f3cf5fefc3386e3db7bbe6dbab11881d6fbfe | |
parent | e26dc74f080891b9a521b19a1150bf4a0d10e425 (diff) | |
download | argaze-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.py | 6 |
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(): |