Unverified 提交 b894e69d authored 作者: Glenn Jocher's avatar Glenn Jocher 提交者: GitHub

Update mosaic plots font size (#4596)

上级 bfad3644
...@@ -162,7 +162,7 @@ def plot_images(images, targets, paths=None, fname='images.jpg', names=None, max ...@@ -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))) mosaic = cv2.resize(mosaic, tuple(int(x * ns) for x in (w, h)))
# Annotate # 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) annotator = Annotator(mosaic, line_width=round(fs / 10), font_size=fs)
for i in range(i + 1): for i in range(i + 1):
x, y = int(w * (i // ns)), int(h * (i % ns)) # block origin x, y = int(w * (i // ns)), int(h * (i % ns)) # block origin
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论