Skip to content

Commit

Permalink
Update mosaic plots font size (#4596)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Aug 29, 2021
1 parent bfad364 commit b894e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def plot_images(images, targets, paths=None, fname='images.jpg', names=None, max
mosaic = cv2.resize(mosaic, tuple(int(x * ns) for x in (w, h)))

# Annotate
fs = int(h * ns * 0.02) # font size
fs = int((h + w) * ns * 0.01) # font size
annotator = Annotator(mosaic, line_width=round(fs / 10), font_size=fs)
for i in range(i + 1):
x, y = int(w * (i // ns)), int(h * (i % ns)) # block origin
Expand Down

0 comments on commit b894e69

Please sign in to comment.