aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@michaels-mbp-4.devices.brown.edu>2022-05-09 03:52:34 -0400
committerMichael Foiani <sotech117@michaels-mbp-4.devices.brown.edu>2022-05-09 03:52:34 -0400
commitc2627361f1fb1f07db757d43c094c285c6ab1cee (patch)
tree57507d224b8b2594d21e0b307e42af296e508722 /main.py
parent7596e4d8a62f04e0f57a8e26dd415002c5afc0bc (diff)
more examples + ease of use fixes
Diffstat (limited to 'main.py')
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index e60f14d1..3649309a 100644
--- a/main.py
+++ b/main.py
@@ -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()