We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a097d82 commit 99eb24eCopy full SHA for 99eb24e
DeepLabStream.py
@@ -437,10 +437,12 @@ def start_experiment(self):
437
def stop_recording(self):
438
# finishing with the videos
439
if self._recording_running:
440
+ print("Saving the video")
441
for file in self._video_files.values():
442
file.release()
443
self._recording_running = False
444
self._video_files = None
445
+ print("Video saved")
446
447
def stop_dlc(self):
448
# cleaning up the dlc processes
@@ -469,9 +471,9 @@ def finish_streaming(self):
469
471
"""
470
472
Clean up after ourselves
473
- self.stop_recording()
- self.stop_dlc()
474
self.stop_experiment()
475
+ self.stop_dlc()
476
+ self.stop_recording()
477
cv2.destroyAllWindows()
478
479
#####################
0 commit comments