aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/utils
diff options
context:
space:
mode:
authorThéo de la Hogue2022-11-29 20:53:07 +0100
committerThéo de la Hogue2022-11-29 20:53:07 +0100
commit09a18f98dd038d2a79f35b56c991b237d9add015 (patch)
tree703393633f0db6c7acb812badc7813a93d2003df /src/argaze/utils
parent0a7154cbaa43bb14aae62fc4324ad24c60949472 (diff)
downloadargaze-09a18f98dd038d2a79f35b56c991b237d9add015.zip
argaze-09a18f98dd038d2a79f35b56c991b237d9add015.tar.gz
argaze-09a18f98dd038d2a79f35b56c991b237d9add015.tar.bz2
argaze-09a18f98dd038d2a79f35b56c991b237d9add015.tar.xz
Loading places from .obj file.
Diffstat (limited to 'src/argaze/utils')
-rw-r--r--src/argaze/utils/tobii_segment_argaze_scene_export.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/utils/tobii_segment_argaze_scene_export.py b/src/argaze/utils/tobii_segment_argaze_scene_export.py
index ae42d7c..a038e34 100644
--- a/src/argaze/utils/tobii_segment_argaze_scene_export.py
+++ b/src/argaze/utils/tobii_segment_argaze_scene_export.py
@@ -86,12 +86,12 @@ def main():
# Load a tobii segment video
tobii_segment_video = tobii_segment.load_video()
- print(f'Video properties:\n\tduration: {tobii_segment_video.duration/1e6} s\n\twidth: {tobii_segment_video.width} px\n\theight: {tobii_segment_video.height} px')
+ print(f'\nVideo properties:\n\tduration: {tobii_segment_video.duration/1e6} s\n\twidth: {tobii_segment_video.width} px\n\theight: {tobii_segment_video.height} px')
# Load a tobii segment data
tobii_segment_data = tobii_segment.load_data()
- print(f'Loaded data count:')
+ print(f'\nLoaded data count:')
for name in tobii_segment_data.keys():
print(f'\t{name}: {len(tobii_segment_data[name])} data')