编写一个读取tif图像的python代码
时间: 2023-03-31 09:01:17 浏览: 125
读取图像代码
可以使用Python的Pillow库来读取tif图像。以下是示例代码:
```python
from PIL import Image
# 打开tif图像
image = Image.open('image.tif')
# 显示图像
image.show()
# 获取图像大小
width, height = image.size
print('图像大小:{}x{}'.format(width, height))
# 获取像素值
pixels = list(image.getdata())
print('像素值:', pixels)
```
注意:需要安装Pillow库,可以使用以下命令安装:
```
pip install Pillow
```
阅读全文