#Attempts to save the point cloud (pc) to a ply file | |
pc = sampler.output_to_point_clouds(samples)[0] | |
with open('example_data/blue_bird.ply','wb') as f: | |
pc.write_ply(f) | |
#pc.save('example_data/blue_bird.npz') |
#Attempts to save the point cloud (pc) to a ply file | |
pc = sampler.output_to_point_clouds(samples)[0] | |
with open('example_data/blue_bird.ply','wb') as f: | |
pc.write_ply(f) | |
#pc.save('example_data/blue_bird.npz') |