|
在Python中,有多种库可用于图像展示。以下是一些常见的展示图片的方法和相关的库Matplotlib:使用matplotlib.pyplot.imshow函数展示图像。示例代码:importmatplotlib.pyplotaspltimportmatplotlib.imageasmpimgimg_path='example.jpg'img=mpimg.imread(img_path)plt.imshow(img)plt.axis('off')plt.show()Pillow(PIL):使用PIL.Image.show方法展示图像。示例代码:fromPILimportImageimg_path='example.jpg'img=Image.open(img_path)img.show()IPython的Display模块:使用IPython.display.Image类展示图像。示例代码:fromIPython.displayimportImage,displayimg_path='example.jpg'display(Image(filename=img_path)) OpenCV:使用cv2.imshow方法展示图像。需要注意的是,cv2.imshow通常在JupyterNotebook中无法直接使用,但在独立的Python脚本中有效。示例代码:importcv2img_path='example.jpg'img=cv2.imread(img_path)cv2.imshow('Image',img)cv2.waitKey(0)cv2.destroyAllWindows()
|
|