Ran the following code snippet, it was able to display the shape of the image as follows, but it can't display/plot it.
(48, 48, 4)
Here is the code snippet
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
import sys
img = mpimg.imread('/Users/joe/Downloads/amazon.png')
print(img.shape)
plt.imshow(img)
for line in sys.stdin:
print (line)
Wonder what may have gone wrong.