首页 > Python资料 博客日记
python展示图片的四种方法
2024-05-13 01:00:07Python资料围观178次
文章python展示图片的四种方法分享给大家,欢迎收藏Python资料网,专注分享技术知识
在 Python 中,有多种库可用于图像展示。以下是一些常见的展示图片的方法和相关的库
-
Matplotlib:
- 使用
matplotlib.pyplot.imshow
函数展示图像。 - 示例代码:
import matplotlib.pyplot as plt import matplotlib.image as mpimg img_path = 'example.jpg' img = mpimg.imread(img_path) plt.imshow(img) plt.axis('off') plt.show()
- 使用
Pillow(PIL):
- 使用
PIL.Image.show
方法展示图像。 - 示例代码:
from PIL import Image img_path = 'example.jpg' img = Image.open(img_path) img.show()
IPython 的 Display 模块:
- 使用
IPython.display.Image
类展示图像。 - 示例代码:
from IPython.display import Image, display img_path = 'example.jpg' display(Image(filename=img_path))
OpenCV:
- 使用
cv2.imshow
方法展示图像。需要注意的是,cv2.imshow
通常在 Jupyter Notebook 中无法直接使用,但在独立的 Python 脚本中有效。 - 示例代码:
import cv2 img_path = 'example.jpg' img = cv2.imread(img_path) cv2.imshow('Image', img) cv2.waitKey(0) cv2.destroyAllWindows()
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】conda虚拟环境创建及使用
- 基于人脸识别的校园课堂考勤管理系统设计与实现(Python)
- Python的13款Web框架对比(比较全!建议收藏!)
- 【python】Matplotlib库安装教程
- Python 青铜宝剑十六维,破医疗数智化难关(上)
- 【Python篇】PyQt5 超详细教程——由入门到精通(序篇)
- Python 条件语句详解 if - elif-else
- C语言&Python&Bash:空白(空格、水平制表符、换行符)与转义字符
- 计算机毕业设计Python中华古诗词知识图谱可视化 古诗词智能问答系统 古诗词数据分析 古诗词情感分析模型 自然语言处理NLP 机器学习 深度学习
- Python | 基于支持向量机(SVM)的图像分类案例
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Anaconda版本和Python版本对应关系(持续更新...)
- Python与PyTorch的版本对应
- Windows上安装 Python 环境并配置环境变量 (超详细教程)
- Python pyinstaller打包exe最完整教程