UnsupervisedPointCloudReconstruction
UnsupervisedPointCloudReconstruction copied to clipboard
How to recretae the gaussian.npy for larger point clouds of size more than 2048 points
I want to ensure that the data I generate follows the same distribution as yours. Did you do it this way?
import numpy as np
np.save("gaussian.npy", np.random.randn(points_num).reshape(points_num // 3, 3))
Thanks!