Spaces:
Running
Running
Update demo.py
Browse files
demo.py
CHANGED
@@ -116,10 +116,9 @@ def compare_face(frame1, frame2):
|
|
116 |
|
117 |
return html
|
118 |
except:
|
119 |
-
return "
|
120 |
else:
|
121 |
-
return
|
122 |
-
# return result.text
|
123 |
|
124 |
with gr.Blocks(css=".gradio-container {background-color: #F4E5E0}") as demo:
|
125 |
with gr.TabItem("Face Recognition Online Demo"):
|
@@ -134,7 +133,7 @@ with gr.Blocks(css=".gradio-container {background-color: #F4E5E0}") as demo:
|
|
134 |
image_input2 = gr.Image(type='filepath')
|
135 |
gr.Examples(['face_examples/2.jpg', 'face_examples/4.jpg', 'face_examples/8.jpg', 'face_examples/10.jpg'],
|
136 |
inputs=image_input2)
|
137 |
-
face_recog_button = gr.Button("Compare Face")
|
138 |
with gr.Column(scale=3):
|
139 |
recog_html_output = gr.HTML()
|
140 |
|
|
|
116 |
|
117 |
return html
|
118 |
except:
|
119 |
+
return "Processing failed"
|
120 |
else:
|
121 |
+
return result.text
|
|
|
122 |
|
123 |
with gr.Blocks(css=".gradio-container {background-color: #F4E5E0}") as demo:
|
124 |
with gr.TabItem("Face Recognition Online Demo"):
|
|
|
133 |
image_input2 = gr.Image(type='filepath')
|
134 |
gr.Examples(['face_examples/2.jpg', 'face_examples/4.jpg', 'face_examples/8.jpg', 'face_examples/10.jpg'],
|
135 |
inputs=image_input2)
|
136 |
+
face_recog_button = gr.Button("Compare Face", variant="primary", size="lg")
|
137 |
with gr.Column(scale=3):
|
138 |
recog_html_output = gr.HTML()
|
139 |
|