plt.imread python

# read the image
img = plt.imread('path/to/image')
# show the image
plt.imshow(img)
plt.show()
GentleMan Liu