Suburst commited on
Commit
882ce35
·
verified ·
1 Parent(s): 76c7115

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -25
app.py CHANGED
@@ -5,8 +5,6 @@ import sys
5
  import os
6
  sys.path.append(os.path.dirname(os.path.abspath(__file__)))
7
 
8
-
9
-
10
  def process_video(video):
11
  # 打开视频文件
12
  cap = cv2.VideoCapture(video)
@@ -32,28 +30,24 @@ title = "Welcome to DDM DeepSort"
32
  description = "Upload a video to process it using DDM and DeepSORT."
33
 
34
  # Initialize Gradio interface with title and description
35
- demo = gr.Interface(
36
- fn=app_main,
37
- inputs="video",
38
- outputs="video",
39
- title=title,
40
- description=description
41
- )
42
-
43
- demo_video = gr.Video(value="DDMDeepsort1.mp4", label="Demo Video")
44
-
45
- html_content = """
46
- <div style="text-align: center;">
47
- <h1>Welcome to My Video Processing App</h1>
48
- <p>The author is a third-year undergraduate student at the School of Intelligent Science and Technology, Nanjing University, Suzhou Campus. </p>
49
- <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>
50
- <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>
51
- <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>
52
- </div>
53
- """
54
- with demo:
55
- gr.HTML(html_content)
56
- demo_video
57
 
58
  demo.launch()
59
-
 
5
  import os
6
  sys.path.append(os.path.dirname(os.path.abspath(__file__)))
7
 
 
 
8
  def process_video(video):
9
  # 打开视频文件
10
  cap = cv2.VideoCapture(video)
 
30
  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",
47
+ outputs="video",
48
+ title=title,
49
+ description=description
50
+ )
51
+ gr.Video(value="DDMDeepsort1.mp4", label="Demo Video")
 
 
 
52
 
53
  demo.launch()