下列可以显示Matplotlib获取图像纬度到属性是
时间: 2024-02-01 15:13:19 浏览: 56
解决matplotlib.pyplot在Jupyter notebook中不显示图像问题
Matplotlib获取图像的维度属性可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 读取图像
img = plt.imread('image.jpg')
# 获取图像维度
height, width, channels = img.shape
print(f"图像高度为:{height}")
print(f"图像宽度为:{width}")
print(f"图像通道数为:{channels}")
```
其中,`plt.imread()`函数用于读取图像,返回一个数组,数组中的每个元素代表图像中的一个像素;`img.shape`属性返回一个元组,元组中的每个元素分别表示图像的高度、宽度和通道数。
阅读全文