wangjin2000 commited on
Commit
bb2da4b
·
verified ·
1 Parent(s): d45657c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -105,7 +105,7 @@ def detect_objects(image_path):
105
  pred = infer(model, img)
106
  #results = postprocess(pred, img0.shape, img)
107
  results = postprocess(pred, dicom_image, img)
108
- return results
109
 
110
  def draw_bounding_boxes(img, results):
111
  for (x1, y1, x2, y2), conf, cls in results:
@@ -115,8 +115,8 @@ def draw_bounding_boxes(img, results):
115
  return img
116
 
117
  def show_preds_image(filepath):
118
- dicom_image, dicom_meta = read_and_preprocess_dicom(image_path)
119
- results = detect_objects(filepath)
120
  #img0 = cv2.imread(filepath)
121
  #img_with_boxes = draw_bounding_boxes(img0, results)
122
  img_with_boxes = draw_bounding_boxes(img0, results)
 
105
  pred = infer(model, img)
106
  #results = postprocess(pred, img0.shape, img)
107
  results = postprocess(pred, dicom_image, img)
108
+ return results, dicom_image
109
 
110
  def draw_bounding_boxes(img, results):
111
  for (x1, y1, x2, y2), conf, cls in results:
 
115
  return img
116
 
117
  def show_preds_image(filepath):
118
+ #dicom_image, dicom_meta = read_and_preprocess_dicom(image_path)
119
+ results, img0 = detect_objects(filepath)
120
  #img0 = cv2.imread(filepath)
121
  #img_with_boxes = draw_bounding_boxes(img0, results)
122
  img_with_boxes = draw_bounding_boxes(img0, results)