Update app.py
Browse files
app.py
CHANGED
@@ -60,10 +60,9 @@ with gr.Blocks() as iface:
|
|
60 |
with gr.Row():
|
61 |
image_input = gr.Image(type="pil", label="Input Image")
|
62 |
with gr.Row():
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
text_output = gr.Textbox(label="Counting Object")
|
67 |
gr.Interface(
|
68 |
fn=detect_objects,
|
69 |
inputs=image_input,
|
|
|
60 |
with gr.Row():
|
61 |
image_input = gr.Image(type="pil", label="Input Image")
|
62 |
with gr.Row():
|
63 |
+
image_output = gr.Image(label="Detect Object")
|
64 |
+
with gr.Row():
|
65 |
+
text_output = gr.Textbox(label="Counting Object")
|
|
|
66 |
gr.Interface(
|
67 |
fn=detect_objects,
|
68 |
inputs=image_input,
|