找回密码
 会员注册
查看: 16|回复: 0

python展示图片的四种方法

[复制链接]

2万

主题

0

回帖

7万

积分

超级版主

积分
72239
发表于 2024-9-7 17:22:11 | 显示全部楼层 |阅读模式
在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()
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

QQ|手机版|心飞设计-版权所有:微度网络信息技术服务中心 ( 鲁ICP备17032091号-12 )|网站地图

GMT+8, 2025-1-11 05:37 , Processed in 0.446639 second(s), 25 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表