show jpg in jupyter notebook

Solutions on MaxInterview for show jpg in jupyter notebook by the best coders in the world

showing results for - "show jpg in jupyter notebook"
Mariangel
23 Oct 2016
1from IPython.display import Image, display
2
3listOfImageNames = ['/path/to/images/1.png',
4                    '/path/to/images/2.png']
5
6for imageName in listOfImageNames:
7    display(Image(filename=imageName))
8