I'm doing some image processing in which I have to call imshow() often. However, the default colormap and attributes don't work for me so I have to do:
gray()
imshow(myImage, interpolation='none', origin='lower')
How to set the value of imshow to have default interpolation='none', origin='lower' so it could be called just with imshow(myImage)?