Answers for "how to open image in jupyter notebook"

1

show jpg in jupyter notebook

from IPython.display import Image, display

listOfImageNames = ['/path/to/images/1.png',
                    '/path/to/images/2.png']

for imageName in listOfImageNames:
    display(Image(filename=imageName))
Posted by: Guest on January-24-2021

Code answers related to "how to open image in jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language