justin2341 commited on
Commit
c1f8b2c
·
verified ·
1 Parent(s): 93b8d2b

Update demo.py

Browse files
Files changed (1) hide show
  1. demo.py +16 -17
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.TabItem("Face Recognition Online Demo"):
125
- with gr.Row():
126
- with gr.Column(scale=7):
127
- with gr.Row():
128
- with gr.Column():
129
- image_input1 = gr.Image(type='filepath')
130
- gr.Examples(['face_examples/1.jpg', 'face_examples/3.jpg', 'face_examples/7.jpg', 'face_examples/9.jpg'],
131
- inputs=image_input1)
132
- with gr.Column():
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
-
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)