Thomas Male
Upload 98 files
a5407e7
raw
history blame contribute delete
211 Bytes
#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')