annayding
commited on
Commit
·
bc2d673
1
Parent(s):
ba1f8a1
debugging
Browse files- owl_core.py +1 -1
owl_core.py
CHANGED
@@ -57,7 +57,7 @@ def owl_full_video(
|
|
57 |
|
58 |
# create new dirs and paths for results
|
59 |
filename = os.path.splitext(os.path.basename(vid_path))[0]
|
60 |
-
os.makedirs("
|
61 |
results_dir = f'/results/{filename}_{datetime.now().strftime("%H%M%S")}'
|
62 |
frames_dir = os.path.join(results_dir, "frames")
|
63 |
|
|
|
57 |
|
58 |
# create new dirs and paths for results
|
59 |
filename = os.path.splitext(os.path.basename(vid_path))[0]
|
60 |
+
os.makedirs("results", exist_ok=True)
|
61 |
results_dir = f'/results/{filename}_{datetime.now().strftime("%H%M%S")}'
|
62 |
frames_dir = os.path.join(results_dir, "frames")
|
63 |
|