我正在尝试为我要解决的图像分类问题记录 kinectv2 数据。有没有办法记录kinectv2数据?
libfreenect2
我曾尝试使用 pickle 来保存深度数据,但是由于Frame 类的库中没有 __reduce__ 方法,我遇到了错误。
frames = listener.waitForNewFrame()
depth = frames["depth"]
with open("captures/frame_" + str(i) + "_depth.obj", 'w') as file:
pickle.dump(depth, file)
with open("captures/frame_" + str(i) + "_depth.obj", 'r') as file:
depth = pickle.load(file)
我遇到了给定的错误:
TypeError: no default __reduce__ 由于非平凡的 __cinit__