In [1]:
import matplotlib.pyplot as plt
from matplotlib.image import imread

In [2]:
img = imread('./room.jpg')

In [ ]:
plt.imshow(img)
plt.show()

In [ ]: