If I have multiple images (loaded as NumPy arrays) how can I display the in one IPython Notebook cell?
I know that I can use plt.imshow(ima) to display
plt.imshow(ima)
This is easier and works:
from IPython.display import Image from IPython.display import display x = Image(filename='1.png') y = Image(filename='2.png') display(x, y)