用python代码实现将hdf5图像转化为tif格式
时间: 2024-05-15 21:18:59 浏览: 252
hdf转tif,hdf转tif envi,Python
5星 · 资源好评率100%
好的,以下是将hdf5图像转化为tif格式的Python代码,你可以参考使用:
```python
import h5py
from PIL import Image
# 打开hdf5文件
f = h5py.File('input.hdf5', 'r')
# 读取数据集
data = f['dataset_name'][:]
# 转化为PIL Image对象
image = Image.fromarray(data)
# 保存为tif格式
image.save('output.tif')
```
其中,`input.hdf5`需要替换为你的hdf5文件名,`dataset_name`需要替换为你的数据集名。输出的tif格式图像将保存为`output.tif`文件。
阅读全文