Spaces:
Running
Running
Update demo.py
Browse files
demo.py
CHANGED
@@ -121,22 +121,21 @@ def compare_face(frame1, frame2):
|
|
121 |
return result.text
|
122 |
|
123 |
with gr.Blocks(css=".gradio-container {background-color: #F4E5E0}") as demo:
|
124 |
-
with gr.
|
125 |
-
with gr.
|
126 |
-
with gr.
|
127 |
-
with gr.
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
face_recog_button.click(compare_face, inputs=[image_input1, image_input2], outputs=recog_html_output)
|
141 |
|
142 |
demo.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
121 |
return result.text
|
122 |
|
123 |
with gr.Blocks(css=".gradio-container {background-color: #F4E5E0}") as demo:
|
124 |
+
with gr.Row():
|
125 |
+
with gr.Column(scale=7):
|
126 |
+
with gr.Row():
|
127 |
+
with gr.Column():
|
128 |
+
image_input1 = gr.Image(type='filepath')
|
129 |
+
gr.Examples(['face_examples/1.jpg', 'face_examples/3.jpg', 'face_examples/7.jpg', 'face_examples/9.jpg'],
|
130 |
+
inputs=image_input1)
|
131 |
+
with gr.Column():
|
132 |
+
image_input2 = gr.Image(type='filepath')
|
133 |
+
gr.Examples(['face_examples/2.jpg', 'face_examples/4.jpg', 'face_examples/8.jpg', 'face_examples/10.jpg'],
|
134 |
+
inputs=image_input2)
|
135 |
+
face_recog_button = gr.Button("Compare Face", variant="primary", size="lg")
|
136 |
+
with gr.Column(scale=3):
|
137 |
+
recog_html_output = gr.HTML()
|
138 |
+
|
139 |
+
face_recog_button.click(compare_face, inputs=[image_input1, image_input2], outputs=recog_html_output)
|
|
|
140 |
|
141 |
demo.launch(server_name="0.0.0.0", server_port=7860)
|