We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can we convert PCD or rosbag to the format this tool need?
The text was updated successfully, but these errors were encountered:
have you solved this question?
Sorry, something went wrong.
Hey if you want to convert PCD to binary, you could use PCL library to do that. This is a script to do for multiple PCDs. Hope this helps.
https://gist.github.com/bsridatta/e1e0964b5c6b424549c12d8c4156bb4b
FYI, pypcd also helps and is much easier.
I converted the point cloud files to numpy as
points = [N, 4] points[0] = x,y,z,intensity
then, just dumping as binary worked fine.
data.astype("float32").tofile("binary.bin"
No branches or pull requests
How can we convert PCD or rosbag to the format this tool need?
The text was updated successfully, but these errors were encountered: