在Jupyter Notebook中显示文件中的图像,可以使用Python的图像处理库PIL(Python Imaging Library)或者matplotlib库。以下是两种方法的详细步骤:
方法一:使用PIL库
!pip install pillow
from PIL import Image
Image.open()
方法打开图像文件:image = Image.open('image_file_path.jpg')
display()
函数显示图像:from IPython.display import display
display(image)
方法二:使用matplotlib库
!pip install matplotlib
import matplotlib.pyplot as plt
plt.imread()
方法读取图像文件:image = plt.imread('image_file_path.jpg')
plt.imshow()
方法显示图像:plt.imshow(image)
plt.axis('off')
plt.show()
这样就可以在Jupyter Notebook中显示文件中的图像了。
领取专属 10元无门槛券
手把手带您无忧上云