Commit
·
856a453
1
Parent(s):
630a883
Update app.py
Browse filesstyling error resolved
app.py
CHANGED
@@ -25,7 +25,7 @@ def fun(img):
|
|
25 |
|
26 |
return cv2.flip(image[:,:,::-1],1)
|
27 |
|
28 |
-
with gr.Blocks() as demo:
|
29 |
|
30 |
with gr.Row():
|
31 |
with gr.Column():
|
@@ -37,9 +37,7 @@ with gr.Blocks() as demo:
|
|
37 |
|
38 |
input.stream(fn=fun,
|
39 |
inputs = input,
|
40 |
-
outputs = output
|
41 |
-
title="Hand Keypoint Detection Realtime | Datascience Dojo",
|
42 |
-
css="footer {display:none !important} .output-markdown{display:none !important}")
|
43 |
|
44 |
|
45 |
|
|
|
25 |
|
26 |
return cv2.flip(image[:,:,::-1],1)
|
27 |
|
28 |
+
with gr.Blocks(title="Hand Keypoint Detection Realtime | Datascience Dojo", css="footer {display:none !important} .output-markdown{display:none !important}") as demo:
|
29 |
|
30 |
with gr.Row():
|
31 |
with gr.Column():
|
|
|
37 |
|
38 |
input.stream(fn=fun,
|
39 |
inputs = input,
|
40 |
+
outputs = output)
|
|
|
|
|
41 |
|
42 |
|
43 |
|