You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I have a problem when load .pcd files.PyntCloud.from_file()does not automatically create normals from .pcd files as it does from .ply files. I have tried to manually load my point data into a PyntCloud object using
cloud = PyntCloud(points)
However the resulting dataframe only consists of the x y z coordinates and not the normal vectors, which I also need. Can you show an example of how these can be manually generated? Is there a way to automatically create all the same variables as if you are using the from_file() function?
Thanks!
J
The text was updated successfully, but these errors were encountered:
However, if your point cloud file already contains normal information, it looks like the way to go should be to extend read_pcd to correctly parse the normals from the file.
Alternatively (or in addition) we could add a new from_instance option to parse PCD instances directly (similar to from_pyvista)
Hello
I have a problem when load .pcd files.
PyntCloud.from_file()
does not automatically create normals from .pcd files as it does from .ply files. I have tried to manually load my point data into a PyntCloud object usingcloud = PyntCloud(points)
However the resulting dataframe only consists of the x y z coordinates and not the normal vectors, which I also need. Can you show an example of how these can be manually generated? Is there a way to automatically create all the same variables as if you are using the
from_file()
function?Thanks!
J
The text was updated successfully, but these errors were encountered: