# Import required libraries
from matplotlib import pyplot as plt
from matplotlib import image as mpimg
plt.title('GradCAM Bee Image') # Adds title
plt.xlabel('X pixel scaling') # Adds X label
plt.ylabel('Y pixels scaling') # Adds y label
im = mpimg.imread('GradCAM_Bee.png') # Reads the image
plt.imshow(im)
plt.show()