Vishaltiwari2019 commited on
Commit
cf2f20d
·
verified ·
1 Parent(s): 05c6f78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -9
app.py CHANGED
@@ -59,24 +59,38 @@ def upload_image_with_labels(file):
59
  labels = detect_labels(image)
60
  return ", ".join(labels)
61
 
62
- iface_boxes = gr.Interface(
63
- fn=upload_image_with_boxes,
 
 
 
 
 
64
  inputs="file",
65
  outputs="image",
66
  title="Object Detection with Boxes",
67
- description="Upload an image and detect objects using DETR model. Boxes will be drawn around the detected objects.",
68
  allow_flagging=False
69
  )
70
 
 
 
 
 
71
  iface_labels = gr.Interface(
72
- fn=upload_image_with_labels,
73
- inputs="file",
74
  outputs="text",
75
  title="Detected Object Labels",
76
- description="Upload an image and get the detected object labels using DETR model.",
 
 
 
 
 
 
 
77
  allow_flagging=False
78
  )
79
 
80
- iface_boxes.launch()
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()