gpt4 book ai didi

python - H5PY/Numpy - 设置 numpy 数组的内部形状(对于 h5py)

转载 作者:行者123 更新时间:2023-11-28 22:32:16 26 4
gpt4 key购买 nike

我正在尝试使用 h5py 将数据存储为(图像、角度)的元组列表。图像是来自 OpenCV 的 uint8 类型的大小为 (240,320,3) 的 numpy 数组,而角度只是 float16 类型的数字。

使用h5py时,需要有一个预定的形状,以保持可用的读/写速度。 H5py 使用任意值预加载整个数据集,您可以稍后在其中建立索引并将这些值设置为您想要的任何值。

我想知道在为 h5py 初始化数据集的形状时如何设置内部 numpy 数组的形状。我相信同样的解决方案也适用于 numpy。

import h5py
import numpy as np

dset_length = 100

# fake data of same shape
images = np.ones((dset_length,240,320,3), dtype='uint8') * 255

# fake data of same shape
angles = np.ones(dset_length, dtype='float16') * 90
f = h5py.File('dataset.h5', 'a')
dset = f.create_dataset('dset1', shape=(dset_length,2))

for i in range(dset_length):
# does not work since the shape of dset[0][0] is a number,
# and can't store an array datatype
dset[i] = np.array((images[i],angles[i]))

在 numpy 中重新创建问题如下所示:

import numpy as np 

a = np.array([
[np.array([0,0]), 0],
[np.array([0,0]), 0],
[np.array([0,0]), 0]
])

a.shape # (3, 2)

b = np.empty((3,2))

b.shape # (3, 2)

a[0][0] = np.array([1,1])

b[0][0] = np.array([1,1]) # ValueError: setting an array element with a sequence.

最佳答案

@Eric 创建的 dtype 应该与 numpyh5py 一起工作。但我想知道你是否真的想要或需要它。另一种方法是在 numpyimagesangles 中有两个数组,一个是 4d uint8,另一个是 float .在 h5py 中,您可以创建一个 group,并将这两个数组存储为 datasets

您可以选择 第 th' 图像的值

 images[i,...], angles[i]     # or
data[i]['image'], data[i]['angle']

例如:

import h5py
dt = np.dtype([('angle', np.float16), ('image', np.uint8, (40,20,3))])
data = np.ones((3,), dt)

f = h5py.File('test.h5','w')
g = f.create_group('data')

复合数据类型的数据集:

g.create_dataset('data', (3,), dtype=dt)
g['data'][:] = data

或两个数组的数据集

g.create_dataset('image', (3,40,20,3), dtype=np.uint8)
g.create_dataset('angle', (3,), dtype=np.float16)
g['image'][:] = data['image']
g['angle'][:] = data['angle']

从任一数据集中获取角度数组:

g['data']['angle'][:]
g['angle'][:]

关于python - H5PY/Numpy - 设置 numpy 数组的内部形状(对于 h5py),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41155504/

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