Martin Tomov commited on
Commit
f06849a
Β·
verified Β·
1 Parent(s): 58b9a20
Files changed (1) hide show
  1. app.py +19 -18
app.py CHANGED
@@ -43,7 +43,8 @@ class DetectionResult:
43
  ymin=detection_dict['box']['ymin'],
44
  xmax=detection_dict['box']['xmax'],
45
  ymax=detection_dict['box']['ymax']
46
- )
 
47
  )
48
 
49
  def annotate(image: Union[Image.Image, np.ndarray], detection_results: List[DetectionResult]) -> np.ndarray:
@@ -186,26 +187,26 @@ def detections_to_json(detections):
186
  return detections_list
187
 
188
  def process_image(image, include_json):
189
- labels = ["insect"]
190
- original_image, detections = grounded_segmentation(image, labels, threshold=0.3, polygon_refinement=True)
191
- yellow_background_with_insects = create_yellow_background_with_insects(np.array(original_image), detections)
192
- if include_json:
193
- detections_json = detections_to_json(detections)
194
- json_output_path = "insect_detections.json"
195
- with open(json_output_path, 'w') as json_file:
196
- json.dump(detections_json, json_file, indent=4)
197
- return yellow_background_with_insects, json.dumps(detections_json, separators=(',', ':'))
198
- else:
199
- return yellow_background_with_insects, None
200
 
201
  examples = [
202
- ["flower-night.jpg"]
203
  ]
204
 
205
  gr.Interface(
206
- fn=process_image,
207
- inputs=[gr.Image(type="pil"), gr.Checkbox(label="Include JSON", value=False)],
208
- outputs=[gr.Image(type="numpy"), gr.Textbox()],
209
- title="InsectSAM 🐞",
210
- examples=examples
211
  ).launch()
 
43
  ymin=detection_dict['box']['ymin'],
44
  xmax=detection_dict['box']['xmax'],
45
  ymax=detection_dict['box']['ymax']
46
+ ),
47
+ mask=detection_dict.get('mask')
48
  )
49
 
50
  def annotate(image: Union[Image.Image, np.ndarray], detection_results: List[DetectionResult]) -> np.ndarray:
 
187
  return detections_list
188
 
189
  def process_image(image, include_json):
190
+ labels = [β€œinsect”]
191
+ original_image, detections = grounded_segmentation(image, labels, threshold=0.3, polygon_refinement=True)
192
+ yellow_background_with_insects = create_yellow_background_with_insects(np.array(original_image), detections)
193
+ if include_json:
194
+ detections_json = detections_to_json(detections)
195
+ json_output_path = β€œinsect_detections.json”
196
+ with open(json_output_path, β€˜w’) as json_file:
197
+ json.dump(detections_json, json_file, indent=4)
198
+ return yellow_background_with_insects, json.dumps(detections_json, separators=(’,’, β€˜:’))
199
+ else:
200
+ return yellow_background_with_insects, None
201
 
202
  examples = [
203
+ [β€œflower-night.jpg”]
204
  ]
205
 
206
  gr.Interface(
207
+ fn=process_image,
208
+ inputs=[gr.Image(type=β€œpil”), gr.Checkbox(label=β€œInclude JSON”, value=False)],
209
+ outputs=[gr.Image(type=β€œnumpy”), gr.Textbox()],
210
+ title=β€œInsectSAM πŸžβ€,
211
+ examples=examples
212
  ).launch()