将.tif文件转换成.npy文件
时间: 2024-05-08 20:20:38 浏览: 163
Matlab-在matlab中读+写Numpy.NPY文件实现.zip
你可以使用Python中的Pillow库和Numpy库将.tif文件转换成.npy文件。以下是一个示例代码:
```python
from PIL import Image
import numpy as np
# 读取.tif文件
img = Image.open('example.tif')
# 将图像转换为Numpy数组
arr = np.array(img)
# 保存为.npy文件
np.save('example.npy', arr)
```
在运行代码之前,确保安装了Pillow和Numpy库。
阅读全文