diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,6 @@ from model import YourModel from skimage.io import imread, imsave from matplotlib import pyplot as plt -import numpy as np def parse_args(): @@ -105,6 +104,7 @@ def main(): # show the final result :) plt.imshow(final_image) + print('\nSaved the final result to out/results/{}. Showing the final result now.'.format(ARGS.savefile)) plt.show() |