asif00 commited on
Commit
04dda20
·
1 Parent(s): 252a43a
Files changed (1) hide show
  1. app.py +4 -6
app.py CHANGED
@@ -47,10 +47,10 @@ def process_video(start_button, stop_button, uploaded_video):
47
  process = False
48
  return None, ""
49
 
50
- start_button = gr.inputs.Checkbox(label="Start")
51
- stop_button = gr.inputs.Checkbox(label="Stop")
52
- frame = gr.inputs.Video(label="Webcam Feed")
53
- uploaded_video = gr.inputs.Video(label="Upload Video")
54
 
55
  webcam_interface = gr.Interface(
56
  fn=process_webcam,
@@ -59,7 +59,6 @@ webcam_interface = gr.Interface(
59
  live=True,
60
  title="YOLO Image Segmentation (Webcam)",
61
  description="This application uses the YOLO model to perform image segmentation on a webcam feed. Check 'Start' to begin. Check 'Stop' to end the process.",
62
- theme="huggingface"
63
  )
64
 
65
  video_interface = gr.Interface(
@@ -69,7 +68,6 @@ video_interface = gr.Interface(
69
  live=True,
70
  title="YOLO Image Segmentation (Video)",
71
  description="This application uses the YOLO model to perform image segmentation on an uploaded video. Upload a video and check 'Start' to begin. Check 'Stop' to end the process.",
72
- theme="huggingface"
73
  )
74
 
75
  gr.TabbedInterface(
 
47
  process = False
48
  return None, ""
49
 
50
+ start_button = gr.components.Checkbox(label="Start")
51
+ stop_button = gr.components.Checkbox(label="Stop")
52
+ frame = gr.components.Video(label="Webcam Feed")
53
+ uploaded_video = gr.components.Video(label="Upload Video")
54
 
55
  webcam_interface = gr.Interface(
56
  fn=process_webcam,
 
59
  live=True,
60
  title="YOLO Image Segmentation (Webcam)",
61
  description="This application uses the YOLO model to perform image segmentation on a webcam feed. Check 'Start' to begin. Check 'Stop' to end the process.",
 
62
  )
63
 
64
  video_interface = gr.Interface(
 
68
  live=True,
69
  title="YOLO Image Segmentation (Video)",
70
  description="This application uses the YOLO model to perform image segmentation on an uploaded video. Upload a video and check 'Start' to begin. Check 'Stop' to end the process.",
 
71
  )
72
 
73
  gr.TabbedInterface(