python 获取图片分辨率的方法
作者:ShellCollector 时间:2022-02-19 12:03:56
pil版:
from PIL import Image
filename = r'E:\data\yangben\0.jpg'
img = Image.open(filename)
imgSize = img.size #图片的长和宽
print (imgSize)
maxSize = max(imgSize) #图片的长边
minSize = min(imgSize) #图片的短边
print(maxSize, minSize)
opencv版:
img = cv2.imread(F1)
sp = img.shape
height = sp[0] # height(rows) of image
width = sp[1] # width(colums) of image
chanael = sp[2] # the pixels value is made up of three primary colors
print ( 'width: %d \nheight: %d \nnumber: %d' % (width, height, chanael))
来源:https://blog.csdn.net/jacke121/article/details/76152242
标签:python,图片,分辨率
0
投稿
猜你喜欢
SQL Server数据库基本概念、组成、常用对象与约束
2024-01-14 02:16:01
ASP中一个字符串处理类加强版
2008-11-25 18:07:00
FCKeditor ASP.NET 上传附件研究
2023-12-30 05:27:22
深入理解JavaScript系列(28):设计模式之工厂模式详解
2024-05-06 10:08:17
python 读取dicom文件,生成info.txt和raw文件的方法
2021-06-26 14:45:50
mysql中redo log和 binlog的区别
2024-01-14 12:43:52
用Mimer Validator检查SQL查询
2024-01-24 17:12:01
通过代码实例了解页面置换算法原理
2024-01-24 21:26:23
CSS应用的必要步骤:样式重设
2008-06-11 13:29:00
Python可视化单词统计词频统计中文分词的实现步骤
2023-10-24 17:16:49
两大步骤教您开启MySQL 数据库远程登陆帐号的方法
2024-01-16 10:01:35
Python 编程速成(推荐)
2021-04-03 04:30:10
一行CSS代码为网站加上奥运主题
2008-07-20 12:33:00
利用 PyCharm 实现本地代码和远端的实时同步功能
2022-03-05 08:54:10
一些文档中没有介绍的SQL Server DBCC命令
2008-12-09 14:24:00
Python使用import导入本地脚本及导入模块的技巧总结
2022-09-07 15:09:29
Python正则表达式指南 推荐
2021-10-18 22:04:30
3 个超有用的 Python 编程小技巧
2022-12-02 20:32:03
Python Django 数据库的相关操作详解
2024-01-26 21:02:46
Python 中如何将十六进制转换为 Base64
2022-09-07 01:20:14