img = matplotlib. image. imread("./kite_logo.png") figure, ax = pyplot. subplots(1) rect = patches. Rectangle((125,100),50,25, edgecolor='r', facecolor="none") ax. imshow(img) Displays an image. ax. add_patch(rect) Add rectangle to image.