Numpy Hacks Apr 23, 2022 • 1 min read from skimage import io from matplotlib import pyplot as plt waldo = io.imread('waldo.jpg') plt.imshow(waldo) <matplotlib.image.AxesImage at 0x7ff18e229160> plt.imshow(waldo[220:350, 430:500]) <matplotlib.image.AxesImage at 0x7ff18e1f6160>