From 7c600ea4419f2a95a14ef2fbf69f4e858381591c Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 29 Aug 2021 18:05:49 +0200 Subject: [PATCH] Update mosaic plots font size (#4596) --- utils/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/plots.py b/utils/plots.py index 99c8cc2f7044..ddfdb42201ee 100644 --- a/utils/plots.py +++ b/utils/plots.py @@ -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