Open guess-who-ami opened 2 years ago
For each of the .pkl files, you can load them using python's pickle library. Just do the following (i.e for 0.pkl):
data = pkl.load(open("0.pkl","rb"))
depthmap = data["depth"]
rgbmap = data["rgb"]
mask = data["mask"]
Then just plot the 3 maps/mask using plt.imshow(....)
i just got 70000 .pkl files, how do i visualize these pictures ?