gpt4 book ai didi

python - 使用 Python 将 .h5 文件转换为 .jpg

转载 作者:太空宇宙 更新时间:2023-11-03 14:42:17 26 4
gpt4 key购买 nike

我目前有一个包含灰度图像的 .h5 文件。我需要将其转换为 .jpg。

有人有这方面的经验吗?

注意:我可以将 h5 文件转换为 numpy 数组,然后使用 pypng 等外部库将其转换为 png。但我想知道是否有更有效的方法来转换为图像,最好是 .jpg。

最佳答案

主要成分:

h5py 读取h5文件。确定图像的格式并使用 PIL。

让我们假设它是 RGB 格式 ( https://support.hdfgroup.org/products/java/hdfview/UsersGuide/ug06imageview.html )

假设您的图像位于 Photos/Image 1 那么您可以这样做。

import h5py
import numpy as np
from PIL import Image

hdf = h5py.File("Sample.h5",'r')
array = hdf["Photos/Image 1"][:]
img = Image.fromarray(array.astype('uint8'), 'RGB')
img.save("yourimage.thumbnail", "JPEG")
img.show()

关于python - 使用 Python 将 .h5 文件转换为 .jpg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52394252/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com