English
File size: 211 Bytes
a5407e7
 
 
 
 
 
1
2
3
4
5
6
#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')