opencv读进来的图片宽高怎么输出
时间: 2023-07-04 09:05:02 浏览: 88
opencv读入图片,显示在picture控件上;并实现图片拖动和放大缩小
4星 · 用户满意度95%
可以使用以下代码来获取图像的宽度和高度:
```python
import cv2
# 读取图像
img = cv2.imread('image.jpg')
# 获取图像的宽度和高度
height, width, channels = img.shape
print('宽度为:', width)
print('高度为:', height)
```
其中,`img.shape` 返回一个三元组:(height, width, channels),表示图像的高度、宽度和通道数。因此可以通过 `img.shape[0]` 和 `img.shape[1]` 来分别获取图像的高度和宽度。
阅读全文