xmrt commited on
Commit
02cf03c
1 Parent(s): 5d648b4
Files changed (1) hide show
  1. main.py +5 -5
main.py CHANGED
@@ -202,11 +202,11 @@ def run_UI():
202
  submit_pose3d_web = gr.Button("Make 3d pose estimation")
203
  submit_hand_web = gr.Button("Make 2d hand estimation")
204
  submit_detect_web = gr.Button("Detect and track objects")
205
-
206
- webcam_output1 = gr.PlayableVideo(height=512, label = "Estimate human 2d poses", show_label=True)
207
- webcam_output2 = gr.PlayableVideo(height=512, label = "Estimate human 3d poses", show_label=True)
208
- webcam_output3 = gr.PlayableVideo(height=512, label = "Estimate human hand position", show_label=True)
209
- webcam_output4 = gr.Video(height=512, label = "Detection and tracking", show_label=True, format="mp4")
210
 
211
 
212
 
 
202
  submit_pose3d_web = gr.Button("Make 3d pose estimation")
203
  submit_hand_web = gr.Button("Make 2d hand estimation")
204
  submit_detect_web = gr.Button("Detect and track objects")
205
+ with gr.Row():
206
+ webcam_output1 = gr.PlayableVideo(height=512, label = "Estimate human 2d poses", show_label=True)
207
+ webcam_output2 = gr.PlayableVideo(height=512, label = "Estimate human 3d poses", show_label=True)
208
+ webcam_output3 = gr.PlayableVideo(height=512, label = "Estimate human hand position", show_label=True)
209
+ webcam_output4 = gr.Video(height=512, label = "Detection and tracking", show_label=True, format="mp4")
210
 
211
 
212