Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -31,16 +31,6 @@ description = "Upload a video to process it using DDM and DeepSORT."
|
|
31 |
|
32 |
# Initialize Gradio interface with title and description
|
33 |
with gr.Blocks() as demo:
|
34 |
-
gr.HTML("""
|
35 |
-
<div style="text-align: center;">
|
36 |
-
<h1>Welcome to My Video Processing App</h1>
|
37 |
-
<p>The author is a third-year undergraduate student at the School of Intelligent Science and Technology, Nanjing University, Suzhou Campus. </p>
|
38 |
-
<p>Since this project uses Hugging Face's free CPU, the processing speed is very slow. In the worst case, even a video with a dozen frames can take several minutes to process. Therefore, if possible, it is recommended to deploy on a device with a better GPU.</p>
|
39 |
-
<p>Although the YOLOv5 model supports up to 80 classes, my project is primarily focused on autonomous driving. Therefore, objects other than people and cars will be excluded after object detection.</p>
|
40 |
-
<p>If this is your first attempt, ensure that the video includes at least people and cars. Additionally, it's recommended that the video is not too long, ideally within 10 seconds.</p>
|
41 |
-
</div>
|
42 |
-
""")
|
43 |
-
|
44 |
gr.Interface(
|
45 |
fn=app_main,
|
46 |
inputs="video",
|
@@ -48,6 +38,20 @@ with gr.Blocks() as demo:
|
|
48 |
title=title,
|
49 |
description=description
|
50 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
gr.Video(value="DDMDeepsort1.mp4", label="Demo Video")
|
52 |
|
53 |
demo.launch()
|
|
|
31 |
|
32 |
# Initialize Gradio interface with title and description
|
33 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
gr.Interface(
|
35 |
fn=app_main,
|
36 |
inputs="video",
|
|
|
38 |
title=title,
|
39 |
description=description
|
40 |
)
|
41 |
+
gr.Markdown("""
|
42 |
+
# Welcome to My Video Processing App
|
43 |
+
|
44 |
+
The author is a third-year undergraduate student at the School of Intelligent Science and Technology, Nanjing University, Suzhou Campus.
|
45 |
+
|
46 |
+
**Note:** Since this project uses Hugging Face's free CPU, the processing speed is very slow. In the worst case, even a video with a dozen frames can take several minutes to process. Therefore, if possible, it is recommended to deploy on a device with a better GPU.
|
47 |
+
|
48 |
+
Although the YOLOv5 model supports up to 80 classes, my project is primarily focused on autonomous driving. Therefore, objects other than people and cars will be excluded after object detection.
|
49 |
+
|
50 |
+
**Tips for First-Time Users:**
|
51 |
+
- Ensure that the video includes at least people and cars.
|
52 |
+
- It's recommended that the video is not too long, ideally within 10 seconds.
|
53 |
+
""")
|
54 |
+
|
55 |
gr.Video(value="DDMDeepsort1.mp4", label="Demo Video")
|
56 |
|
57 |
demo.launch()
|