Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
import os
|
| 2 |
import gradio as gr
|
| 3 |
-
|
|
|
|
| 4 |
|
| 5 |
# install deps
|
| 6 |
-
os.system("pip install -r requirements.txt")
|
| 7 |
def stitch(video_path):
|
| 8 |
# Run the stitching!
|
| 9 |
os.system(f"python stitching.py {video_path} --display --save --save-path 'tmp.png'")
|
|
|
|
| 1 |
import os
|
| 2 |
import gradio as gr
|
| 3 |
+
#import stitching
|
| 4 |
+
#os.system("git clone https://github.com/WillBrennan/ImageStitching && cd ImageStitching")
|
| 5 |
|
| 6 |
# install deps
|
| 7 |
+
#os.system("pip install -r requirements.txt")
|
| 8 |
def stitch(video_path):
|
| 9 |
# Run the stitching!
|
| 10 |
os.system(f"python stitching.py {video_path} --display --save --save-path 'tmp.png'")
|