Martin Tomov commited on
Commit
e72d68c
Β·
verified Β·
1 Parent(s): 9879b4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -192,7 +192,7 @@ original_image, detections = grounded_segmentation(image, labels, threshold=0.3,
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=(’,’, β€˜:’))
 
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=(’,’, β€˜:’))