antao97 / UnsupervisedPointCloudReconstruction

Experiments on unsupervised point cloud reconstruction.
MIT License
165 stars 27 forks source link

How to recretae the gaussian.npy for larger point clouds of size more than 2048 points #9

Open YazhenHan opened 8 months ago

YazhenHan commented 8 months ago

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!