Skip to content

Commit

Permalink
Update autoshape .print() and .save() (ultralytics#2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Jan 23, 2021
1 parent 20d9b5c commit 55f7a18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def __init__(self, imgs, pred, names=None):
def display(self, pprint=False, show=False, save=False, render=False):
colors = color_list()
for i, (img, pred) in enumerate(zip(self.imgs, self.pred)):
str = f'Image {i + 1}/{len(self.pred)}: {img.shape[0]}x{img.shape[1]} '
str = f'image {i + 1}/{len(self.pred)}: {img.shape[0]}x{img.shape[1]} '
if pred is not None:
for c in pred[:, -1].unique():
n = (pred[:, -1] == c).sum() # detections per class
Expand All @@ -255,13 +255,13 @@ def display(self, pprint=False, show=False, save=False, render=False):
# str += '%s %.2f, ' % (names[int(cls)], conf) # label
ImageDraw.Draw(img).rectangle(box, width=4, outline=colors[int(cls) % 10]) # plot
if pprint:
print(str)
print(str.rstrip(', '))
if show:
img.show(f'Image {i}') # show
img.show(f'image {i}') # show
if save:
f = f'results{i}.jpg'
str += f"saved to '{f}'"
img.save(f) # save
print(f"{'Saving' * (i == 0)} {f},", end='' if i < self.n - 1 else ' done.\n')
if render:
self.imgs[i] = np.asarray(img)

Expand Down

0 comments on commit 55f7a18

Please sign in to comment.