如何在python中“可视化”存储的(h5py).h5格式的3D图像?

时间:2018-11-07 09:09:06

标签: python h5py d3dimage

我想可视化以.h5格式存储的3D图像。我想知道如何在python中使用它。对于输入,我的文件名为“ ***。h5”

1 个答案:

答案 0 :(得分:1)

使用python这样的方式加载文件:

File

然后检查其类型。如果它是一个numpy数组,则可以使用OpenCV或Pillow。如果不是,只需使用import h5py filename = 'file.hdf5' f = h5py.File(filename, 'r') 从中创建一个numpy数组。

OpenCV:

f = np.array(f)

枕头:

cv.imshow('text', f)
cv.waitKey(0)
cv.destroyAllWindows()