Martin Tomov commited on
Commit
8f4cd2e
·
verified ·
1 Parent(s): 65651fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -215,7 +215,7 @@ def process_image(image, include_json, include_bboxes):
215
  with open(json_output_path, 'w') as json_file:
216
  json.dump(detections_json, json_file, indent=4)
217
  results.append(json.dumps(detections_json, separators=(',', ':')))
218
- elif not include_bboxes:
219
  results.append(None)
220
 
221
  return tuple(results)
@@ -247,7 +247,7 @@ with gr.Blocks() as demo:
247
  annotated_img, json_txt = results
248
  return (annotated_img, json_txt, [])
249
  else:
250
- annotated_img, = results
251
  return (annotated_img, None, [])
252
 
253
  submit_button.click(update_outputs, [image_input, include_json, include_bboxes], [annotated_output, json_output, crops_output])
 
215
  with open(json_output_path, 'w') as json_file:
216
  json.dump(detections_json, json_file, indent=4)
217
  results.append(json.dumps(detections_json, separators=(',', ':')))
218
+ else:
219
  results.append(None)
220
 
221
  return tuple(results)
 
247
  annotated_img, json_txt = results
248
  return (annotated_img, json_txt, [])
249
  else:
250
+ annotated_img = results[0]
251
  return (annotated_img, None, [])
252
 
253
  submit_button.click(update_outputs, [image_input, include_json, include_bboxes], [annotated_output, json_output, crops_output])