【发布时间】:2017-05-28 09:14:18
【问题描述】:
import h5py
f = h5py.File('the_file.h5', 'r')
one_data = f['key']
print(one_data.shape)
print(one_data.dtype)
print(one_data)
我使用上面的代码来打印信息。 打印结果是:
(320, 320, 3)
uint8
<HDF5 dataset "1458552843.750": shape (320, 320, 3), type "|u1">
【问题讨论】:
标签: python image image-processing hdf5 h5py