#! /usr/bin/python ################################################## # An example python script to read in # the image puzzle1.png and display # # Create by MG 6/14 ################################################## import pylab import matplotlib.pyplot as plt from matplotlib.image import imread # Read in image img = imread('puzzle1.png') # Display image imgplot = plt.imshow(img) pylab.show()