Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -59,24 +59,38 @@ def upload_image_with_labels(file):
|
|
59 |
labels = detect_labels(image)
|
60 |
return ", ".join(labels)
|
61 |
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
64 |
inputs="file",
|
65 |
outputs="image",
|
66 |
title="Object Detection with Boxes",
|
67 |
-
description="Upload an image and detect objects using DETR model.
|
68 |
allow_flagging=False
|
69 |
)
|
70 |
|
|
|
|
|
|
|
|
|
71 |
iface_labels = gr.Interface(
|
72 |
-
fn=
|
73 |
-
inputs="
|
74 |
outputs="text",
|
75 |
title="Detected Object Labels",
|
76 |
-
description="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
allow_flagging=False
|
78 |
)
|
79 |
|
80 |
-
|
81 |
-
iface_labels.launch()
|
82 |
-
|
|
|
59 |
labels = detect_labels(image)
|
60 |
return ", ".join(labels)
|
61 |
|
62 |
+
def switch_interface(file):
|
63 |
+
image = Image.open(file.name)
|
64 |
+
image_with_boxes = detect_objects(image)
|
65 |
+
return image_with_boxes
|
66 |
+
|
67 |
+
iface_switch = gr.Interface(
|
68 |
+
fn=switch_interface,
|
69 |
inputs="file",
|
70 |
outputs="image",
|
71 |
title="Object Detection with Boxes",
|
72 |
+
description="Upload an image and detect objects using DETR model. Tap the image to switch to labels view.",
|
73 |
allow_flagging=False
|
74 |
)
|
75 |
|
76 |
+
def show_labels(image):
|
77 |
+
labels = detect_labels(image)
|
78 |
+
return ", ".join(labels)
|
79 |
+
|
80 |
iface_labels = gr.Interface(
|
81 |
+
fn=show_labels,
|
82 |
+
inputs="image",
|
83 |
outputs="text",
|
84 |
title="Detected Object Labels",
|
85 |
+
description="Tap the image to switch back to object detection with boxes view.",
|
86 |
+
allow_flagging=False
|
87 |
+
)
|
88 |
+
|
89 |
+
iface_tapped = gr.Interface(
|
90 |
+
[iface_switch, iface_labels],
|
91 |
+
title="Object Detection and Labels",
|
92 |
+
layout="horizontal",
|
93 |
allow_flagging=False
|
94 |
)
|
95 |
|
96 |
+
iface_tapped.launch()
|
|
|
|