You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# totaltime.append(np.ones((xyz.shape[0], 1)) * (i-starttime) / duration) # old version: norm timestamp into [0,1]
847
+
totaltime.append(np.ones((xyz.shape[0], 1)) * (i-starttime) /30) # new version:change the unit from index into seconds, assume framerate as 30 frames per second
848
+
853
849
xyz=np.concatenate(totalxyz, axis=0)
854
850
rgb=np.concatenate(totalrgb, axis=0)
855
851
totaltime=np.concatenate(totaltime, axis=0)
856
852
assertxyz.shape[0] ==rgb.shape[0]
857
853
xyzt=np.concatenate( (xyz, totaltime), axis=1)
858
854
storePly(totalply_path, xyzt, rgb)
859
855
try:
856
+
print(f"Read merged point cloud file directly from: {totalply_path}")
0 commit comments