diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -102,10 +102,10 @@ def main(): # save image in output folder final_image = save_tensor_as_image(result_tensor, 'out/results/', ARGS.savefile) - # show the final result :) + # store + 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() + print('\nSaved the final result to out/results/{}.'.format(ARGS.savefile)) + # plt.show() ARGS = parse_args() |