pat229988 commited on
Commit
03869a1
1 Parent(s): 9a393e2

Update object_detection/utils/visualization_utils.py

Browse files
object_detection/utils/visualization_utils.py CHANGED
@@ -172,7 +172,7 @@ def draw_bounding_box_on_image(image,
172
  draw.line([(left, top), (left, bottom), (right, bottom),
173
  (right, top), (left, top)], width=thickness, fill=color)
174
  try:
175
- font = ImageFont.truetype('arial.ttf', 60)
176
  except IOError:
177
  font = ImageFont.load_default()
178
 
 
172
  draw.line([(left, top), (left, bottom), (right, bottom),
173
  (right, top), (left, top)], width=thickness, fill=color)
174
  try:
175
+ font = ImageFont.truetype('arial', 90)
176
  except IOError:
177
  font = ImageFont.load_default()
178