Im using nvblox on a drone in Isaac sim. I have nvblox up and running in a docker enviroment. It makes a nice TSDF reconstruction. I would like to use the ESDF for path planning, but both of the following topics are empty:
/nvblox_node/static_esdf_pointcloud
/nvblox_node/pessimistic_static_esdf_pointcloud
I have also tried using the service /nvblox_node/get_esdf_and_gradient alone but also with cumotion’s isaac_ros_esdf_visualizer without any results.
Hi @Raffaello , I am facing the exact same issue. The esdf point clouds are empty when esdf mode is set to 3D.
Would be very grateful for help as I think this is the bottle neck preventing me from progressing in my project. Thanks.
I am also running nvblox on a jetson mounted on a drone. I want to use it for path planning in 3D hence interested in the 3D esdf. The tsdf layer is always available so I thought of using that but the msg structure is not a pointcloud so the actual tsdf distance is not published so I don’t know where to get that from (but this is a separate issue).
I am worried that using the 2D slice will not give the most optimal path in 3D… I am rechecking the esdf related parameters and console outputs and trying to understand the nvblox_node.cpp script. Maybe something will work out. Will keep you updated here.
Would be great is someone from the forum can help with this!
Yes you are right. Thanks for your repo! Will start with the 2D slice to test basic path planning and the entire pipeline.
Reading the source code hasn’t helped with ideas on how to modify nvblox to work in 3D esdf mode. Hope nvidia will fix that (@Raffaello). I am wondering if it’s worth forgoing nvblox completely and working directly with the raw point cloud output by isaac ros vslam. There are python libraries that can do the 3D reconstruction. But of course, then it’s doing everything from scratch.
Will keep you updated and requesting the same if you make a breakthrough.
Hi @kaspermh! Please correct me if I am wrong. I think if you need the esdf grid data while on the 3d mode we must use the ‘get_esdf_and gradient’ service rather than subscribing to the pointcloud topic. So will creating a client for that service and querying the grid data from it solve your issue? I hope this helps!