Vishaltiwari2019 commited on
Commit
384b4ca
·
verified ·
1 Parent(s): cf2f20d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -13
app.py CHANGED
@@ -59,13 +59,8 @@ def upload_image_with_labels(file):
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",
@@ -73,16 +68,12 @@ iface_switch = gr.Interface(
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
 
 
59
  labels = detect_labels(image)
60
  return ", ".join(labels)
61
 
 
 
 
 
 
62
  iface_switch = gr.Interface(
63
+ fn=upload_image_with_boxes,
64
  inputs="file",
65
  outputs="image",
66
  title="Object Detection with Boxes",
 
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. Tap the text to switch back to object detection with boxes view.",
77
  allow_flagging=False
78
  )
79