python读取图像尺寸
时间: 2023-02-02 09:40:28 浏览: 141
可以使用Python的图像处理库如PIL或OpenCV读取图像尺寸。示例代码如下:
```python
from PIL import Image
# 读取图像
img = Image.open("image.jpg")
# 获取图像尺寸
width, height = img.size
print("Width:", width)
print("Height:", height)
```
或者使用OpenCV:
```python
import cv2
# 读取图像
img = cv2.imread("image.jpg")
# 获取图像尺寸
height, width = img.shape[:2]
print("Width:", width)
print("Height:", height)
```
阅读全文