joel-moniz-dd commited on
Commit
57d74d7
ยท
verified ยท
1 Parent(s): a9ddcdb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -27,6 +27,7 @@ processor = SamProcessor.from_pretrained("facebook/sam-vit-huge")
27
  global_points = []
28
  global_point_label = []
29
  previous_box_points = 0
 
30
 
31
  # Description
32
  title = "<center><strong><font size='8'> ๐Ÿ” Segment food with clicks ๐Ÿœ</font></strong></center>"
@@ -48,9 +49,13 @@ def read_image(url):
48
 
49
  global global_points
50
  global global_point_label
 
51
 
52
  global_points = []
53
  global_point_label = []
 
 
 
54
  return img
55
 
56
  # def show_mask(mask, ax, random_color=False):
@@ -180,6 +185,7 @@ def get_points_with_draw(image, label, evt: gr.SelectData):
180
  global global_points
181
  global global_point_label
182
  global previous_box_points
 
183
 
184
  x, y = evt.index[0], evt.index[1]
185
  point_radius = 15
@@ -190,7 +196,6 @@ def get_points_with_draw(image, label, evt: gr.SelectData):
190
  print(x, y, label)
191
  print(previous_box_points)
192
 
193
- draw = ImageDraw.Draw(image)
194
  if label != 'Bounding Box':
195
  draw.ellipse([(x - point_radius, y - point_radius), (x + point_radius, y + point_radius)], fill=point_color)
196
  else:
 
27
  global_points = []
28
  global_point_label = []
29
  previous_box_points = 0
30
+ draw = None
31
 
32
  # Description
33
  title = "<center><strong><font size='8'> ๐Ÿ” Segment food with clicks ๐Ÿœ</font></strong></center>"
 
49
 
50
  global global_points
51
  global global_point_label
52
+ global draw
53
 
54
  global_points = []
55
  global_point_label = []
56
+
57
+ draw = ImageDraw.Draw(image)
58
+
59
  return img
60
 
61
  # def show_mask(mask, ax, random_color=False):
 
185
  global global_points
186
  global global_point_label
187
  global previous_box_points
188
+ global draw
189
 
190
  x, y = evt.index[0], evt.index[1]
191
  point_radius = 15
 
196
  print(x, y, label)
197
  print(previous_box_points)
198
 
 
199
  if label != 'Bounding Box':
200
  draw.ellipse([(x - point_radius, y - point_radius), (x + point_radius, y + point_radius)], fill=point_color)
201
  else: