diff options
author | Théo de la Hogue | 2022-09-06 11:10:43 +0200 |
---|---|---|
committer | Théo de la Hogue | 2022-09-06 11:10:43 +0200 |
commit | cda5b6b0b93b0970d391f4cab0c7d9bd1c759e4b (patch) | |
tree | f6614d91717515b0715620d8c430afaa6216a8e9 | |
parent | d3918f8f2b378af3872edb142ab1e5d33635d13a (diff) | |
download | argaze-cda5b6b0b93b0970d391f4cab0c7d9bd1c759e4b.zip argaze-cda5b6b0b93b0970d391f4cab0c7d9bd1c759e4b.tar.gz argaze-cda5b6b0b93b0970d391f4cab0c7d9bd1c759e4b.tar.bz2 argaze-cda5b6b0b93b0970d391f4cab0c7d9bd1c759e4b.tar.xz |
Unmuting progress bar
-rw-r--r-- | src/argaze/utils/export_tobii_segment_aruco_visual_scan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/utils/export_tobii_segment_aruco_visual_scan.py b/src/argaze/utils/export_tobii_segment_aruco_visual_scan.py index 6b0a41f..2d5d186 100644 --- a/src/argaze/utils/export_tobii_segment_aruco_visual_scan.py +++ b/src/argaze/utils/export_tobii_segment_aruco_visual_scan.py @@ -185,7 +185,7 @@ def main(): try: # Initialise progress bar - #MiscFeatures.printProgressBar(0, tobii_segment_video.get_duration()/1000, prefix = 'Progress:', suffix = 'Complete', length = 100) + MiscFeatures.printProgressBar(0, tobii_segment_video.get_duration()/1000, prefix = 'Progress:', suffix = 'Complete', length = 100) # Iterate on video frames for video_ts, video_frame in tobii_segment_video.frames(): @@ -298,7 +298,7 @@ def main(): # Update Progress Bar progress = video_ts_ms - int(args.time_range[0] * 1000) - #MiscFeatures.printProgressBar(progress, tobii_segment_video.get_duration()/1000, prefix = 'Progress:', suffix = 'Complete', length = 100) + MiscFeatures.printProgressBar(progress, tobii_segment_video.get_duration()/1000, prefix = 'Progress:', suffix = 'Complete', length = 100) # Exit on 'ctrl+C' interruption except KeyboardInterrupt: |