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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -99,7 +99,7 @@ def process_refexp(image: Image, prompt: str):
99
  # draw center point circle
100
  img1 = ImageDraw.Draw(image)
101
 
102
- r = 1
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)
 
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)