diff options
author | Michael Foiani <sotech117@michaels-mbp-4.devices.brown.edu> | 2022-05-09 04:10:56 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-4.devices.brown.edu> | 2022-05-09 04:10:56 -0400 |
commit | 0aa9638226fb90ba5320e84f46b6559cc255cedd (patch) | |
tree | 40f7f60fd70333685a8eedb737c69662a7c3ed81 | |
parent | c2627361f1fb1f07db757d43c094c285c6ab1cee (diff) |
don't show plot
-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() |