annayding
commited on
Commit
·
ba1f8a1
1
Parent(s):
1a133bc
debugging
Browse files- owl_core.py +1 -0
owl_core.py
CHANGED
@@ -57,6 +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 |
results_dir = f'/results/{filename}_{datetime.now().strftime("%H%M%S")}'
|
61 |
frames_dir = os.path.join(results_dir, "frames")
|
62 |
|
|
|
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 |
|