-
Hey, maybe a stupid question: How do I export a Pointcloud() object? I want to save it as obj or ply (or whatever is best) but can't seem to figure out the right way to do it with pytorch3d |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If
We don't currently support obj or other formats for point clouds. If you have a batch of point clouds you have to split it and save each one to a separate file. |
Beta Was this translation helpful? Give feedback.
-
Thank you @bottler I also came across this page: https://pytorch3d.org/docs/io and wondered why it did not work. |
Beta Was this translation helpful? Give feedback.
If
pcl
is aPointclouds
object containing one point cloud, you can save it as a ply with::We don't currently support obj or other formats for point clouds. If you have a batch of point clouds you have to split it and save each one to a separate file.