0

I am trying to find an implementation of the D* (lite) algorithm for the ROS move_base package.

So far I could only find 2:

Can you suggest me any code?

I am using ROS Melodic on Ubuntu 18.04 with Gazebo9 and Turtlebot3

Thanks in Advance

Tavaro
  • 23
  • 4

1 Answers1

0

I have an implementation of the D* Lite optimized version in python. It works, however I have a minor detail difference from the original pseudo code explained here. If you care to take a look on this question on stack overflow, I'd be happy. I have yet to implement in ROS. But that should be a rather straight forward thing to do as the OccupancyGrid class I made is compatible with the nav_msgs/OccupancyGrid message type in ROS. I have implemented both A* and RRT* earlier with the same configuration, so I know it should work.