Project Notes
Running Python Programs/Functions:
- Change working directory
- 'import [filename]' (without '.py')
- '[filename][functionname](variables)'
If file is already imported, replace 'import' with 'reload' to load any changes.
To show an image produced by a function:
- 'a=[filename][functionname](variables)'
- 'imshow(a, cmap='Grey_r)' (use 'imshow(a)' for colourmap image instead of greyscale image)
--
AaronAndrews - 04 Oct 2016