prithivMLmods commited on
Commit
e3192cc
·
verified ·
1 Parent(s): 07e3a86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -169,7 +169,7 @@ def draw_points_on_image(image, points):
169
  for pt in points:
170
  x, y = pt
171
  r = 8 # Radius of point
172
- draw.ellipse((x-r, y-r, x+r, y+r), fill="red", outline="white", width=)
173
 
174
  return draw_img
175
 
 
169
  for pt in points:
170
  x, y = pt
171
  r = 8 # Radius of point
172
+ draw.ellipse((x-r, y-r, x+r, y+r), fill="red", outline="white", width=4)
173
 
174
  return draw_img
175