output
Browse files
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 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
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 |
|