Visualize 3D Point Cloud using Matplotlib
Reference: SnackCode, Marker # x/y/z data should be numpy array (or 1D tensor using cpu - but I am not sure) # input here is pointcloud tensor which uses gpu, so I converted into numpy array # If the tensor shape is N=batch, P=2048, D=3, call it for individual pcl # or loop through batch and call this function def matplotlib_3d_ptcloud(output_pcl): data = output_pcl.detach().cpu().numpy() xdata ..
PyTorch
2021. 3. 24. 01:21