ivelin commited on
Commit
dad2fe1
·
1 Parent(s): 97bf4dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -99,10 +99,10 @@ def process_refexp(image: Image, prompt: str):
99
  # draw center point circle
100
  img1 = ImageDraw.Draw(image)
101
 
102
- r = 10
103
  shape = [(x-r, y-r), (x+r, y+r)]
104
- img1.ellipse(shape, outline="green", width=10)
105
- img1.ellipse(shape, outline="white", width=5)
106
 
107
  return image, center_point
108
 
 
99
  # draw center point circle
100
  img1 = ImageDraw.Draw(image)
101
 
102
+ r = 30
103
  shape = [(x-r, y-r), (x+r, y+r)]
104
+ img1.ellipse(shape, outline="green", width=20)
105
+ img1.ellipse(shape, outline="white", width=10
106
 
107
  return image, center_point
108