python读取tiff图像
时间: 2023-07-08 07:11:23 浏览: 117
tiff图像读取
要读取TIFF图像,可以使用Python中的Pillow库。以下是读取TIFF图像的简单示例代码:
```python
from PIL import Image
# 打开TIFF图像
image = Image.open("example.tif")
# 打印图像信息
print(image.format)
print(image.size)
print(image.mode)
# 显示图像
image.show()
# 关闭图像
image.close()
```
其中,"example.tif"是要读取的TIFF图像文件名。打印图像信息的代码会输出图像的格式、大小和模式。最后,使用`show()`方法可以显示图像,使用`close()`方法可以关闭图像。
阅读全文