Skip to content
New issue

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 the algorithm runs in real time and its compatibility with solid-state lidar positioning? #3

Open
PigletPh opened this issue Jul 29, 2021 · 8 comments

Comments

@PigletPh
Copy link

PigletPh commented Jul 29, 2021

The work is excellent and I'm honor to study for it.But I have two questions about it:
1、how the algorithm runs in real time not need "velodyne_bin"
2、its compatibility with solid-state lidar ,such as livox
I'm looking forward to your answers,thank you
Yours sincerely

@Chen-Xieyuanli
Copy link
Member

Hey @jiu876, thank you for following our work!

  1. The algorithm runs in real-time currently only after it converges. Once it converges, it computes the difference between the current LiDAR range image and the one rendered in a local map which is very fast.

  2. Theoretically it should work with different LiDAR scanners also including livox. The only changing part should be the projection function for generating the range image. The way for livox generating range image should be different from velodyne/ouster.

I hope this helps.

@PigletPh
Copy link
Author

Hey @jiu876, thank you for following our work!

  1. The algorithm runs in real-time currently only after it converges. Once it converges, it computes the difference between the current LiDAR range image and the one rendered in a local map which is very fast.
  2. Theoretically it should work with different LiDAR scanners also including livox. The only changing part should be the projection function for generating the range image. The way for livox generating range image should be different from velodyne/ouster.

I hope this helps.
Thans for your answers.
the question one may be a little bit confused.I know after convergence the location can run in real-time.But how to locate in real time without lidar dataset, or input my own osbag file to achieve positioning.Does this part of the function implementation have to partially modify the source code?
And another question is that Can I directly construct a mesh map from the point cloud map output by SLAM?

I'm looking forward to your answers,thank you
Yours sincerely

@Chen-Xieyuanli
Copy link
Member

Chen-Xieyuanli commented Jul 30, 2021

the question one may be a little bit confused.I know after convergence the location can run in real-time.But how to locate in real time without lidar dataset, or input my own osbag file to achieve positioning.Does this part of the function implementation have to partially modify the source code?

Yes, currently we don't have a plan to develop a ROS wrapper, you may write a ROS API following this

And another question is that Can I directly construct a mesh map from the point cloud map output by SLAM?

To build a mesh map, you need the normals for each point. If your SLAM provides the normal information, it would work. You could also try our Mesh SLAM method PUMA who runs SLAM and generates a mesh map simultaneously.

@PigletPh PigletPh reopened this Jul 30, 2021
@PigletPh
Copy link
Author

Thank you for your answer. There is another question, can I directly convert the point cloud map PCD file generated by SLAM into a PLY file through the PCL library, and then use it as a new mesh map?
Because I found the PCL library can generate PLY which includes the normals for cloud points.

1 similar comment
@PigletPh
Copy link
Author

Thank you for your answer. There is another question, can I directly convert the point cloud map PCD file generated by SLAM into a PLY file through the PCL library, and then use it as a new mesh map?
Because I found the PCL library can generate PLY which includes the normals for cloud points.

@Chen-Xieyuanli
Copy link
Member

You are welcome. I will appreciate it a lot if you could star this repo if my answers help.

The PCL way sounds doable and you could give it a try. I usually use Open3D, but I think it should work similarly with PCL.

@PigletPh
Copy link
Author

Thank you for your answer. There is another question, can I directly convert the point cloud map PCD file generated by SLAM into a PLY file through the PCL library, and then use it as a new mesh map?
Because I found the PCL library can generate PLY which includes the normals for cloud points.

@PigletPh PigletPh reopened this Jul 30, 2021
@PigletPh
Copy link
Author

ok,I'll have a try.thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants