mlbench123 commited on
Commit
8fb06f1
·
verified ·
1 Parent(s): 4323222

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -229,7 +229,7 @@ def to_dxf(contours):
229
  except Exception as e:
230
  raise gr.Error(f"Unable to generate DXF: {e}")
231
 
232
- output_path = "./outputs/out2.dxf"
233
  doc.saveas(output_path)
234
  return output_path
235
 
@@ -335,7 +335,8 @@ def predict(image, offset, coin_size_mm):
335
  Image.fromarray(dilated_mask).save("./outputs/scaled_mask_new.jpg")
336
  outlines, contours = extract_outlines(dilated_mask)
337
  shrunked_img_contours = cv2.drawContours(image, contours, -1, (0, 0, 255), thickness=2)
338
- dxf = save_dxf_spline(contours, scaling_factor, processed_size[0])
 
339
 
340
  return (
341
  shrunked_img_contours,
 
229
  except Exception as e:
230
  raise gr.Error(f"Unable to generate DXF: {e}")
231
 
232
+ output_path = "./outputs/out.dxf"
233
  doc.saveas(output_path)
234
  return output_path
235
 
 
335
  Image.fromarray(dilated_mask).save("./outputs/scaled_mask_new.jpg")
336
  outlines, contours = extract_outlines(dilated_mask)
337
  shrunked_img_contours = cv2.drawContours(image, contours, -1, (0, 0, 255), thickness=2)
338
+ # dxf = save_dxf_spline(contours, scaling_factor, processed_size[0])
339
+ dxf = to_dxf(contours)
340
 
341
  return (
342
  shrunked_img_contours,