Density Planner: Minimizing Collision Risk in Motion Planning with Dynamic Obstacles using Density-based Reachability

1Technical University of Munich, 2Massachusetts Institute of Technology, 3Boston University

Abstract

Uncertainty is prevalent in robotics. Due to measurement noise and complex dynamics, we cannot estimate the exact system and environment state. Since conservative motion planners are not guaranteed to find a safe control strategy in a crowded, uncertain environment, we propose a density-based method. Our approach uses a neural network and the Liouville equation to learn the density evolution for a system with an uncertain initial state. By applying a gradient-based optimization procedure, we can plan for feasible and probably safe trajectories to minimize the collision risk.

We conduct motion planning experiments on simulated environments and environments generated from real-world data and outperform baseline methods such as model predictive control and nonlinear programming. While our method requires offline planning, the online run time is 100times smaller compared to model predictive control.

Video

Problem Formulation

This work solves the problem of defining an optimal control policy for a given autonomous system and environment setup. The system shall be steered to the goal state while minimizing the collision probability with dynamic obstacles. Furthermore, the state and input constraints must be satisfied, and the system dynamics can be nonlinear in the states.

In contrast to classical motion planning problems, we consider an uncertain initial state following an arbitrary but known probability density function. During the execution of the control policy, the state can be measured and used for closed-loop control. However, because of limited computational power and the time constraints for real-time executability, the online computations of the controller have to be simple. Furthermore, we consider imperfect measurements due to sensor bias.

Additionally, probabilistic predictions for the evolution of the environment are given. Namely, we know for each position in the environment the probability of it being occupied by an obstacle at a certain point in time. The position of the vehicle at this time depends on the initial state and hence also follows a certain probability distribution. The overlap of this state distribution with the predicted obstacle positions yields the collision probability.

Thus, the algorithm should find a general control strategy which minimizes the cost function and satisfies the constraints for the uncertain initial states despite sensor errors. The motion planning problems are visualized in the figures below.

motion planning problem

Classical motion planning problem: The initial state and the environment is considered as known.

motion planning problem

Motion planning problem considered in this work: The initial state is uncertain and given by an arbitrary probability distribution. The environment is uncertain and described by occupancy probabilities.

Proposed Solution

First, we design a tracking controller which uses real-time state measurements to track a reference trajectory. To guarantee that the considered system stays in the neighborhood of the reference trajectory despite the initial state uncertainties and disturbances, we will use contraction theory for the controller synthesis. The synthesis has to be done only once since the controller can be used for all reference trajectories and hence for all environment setups, as long as the system dynamics stay the same.

After defining the tracking controller, the motion planning problem is simplified to finding the optimal reference trajectory for the closed-loop dynamics. As we want to minimize the collision probability and have short computation times, we need an efficient way to compute the state density distribution along different reference trajectories. On this account, we train a neural network which predicts the evolution of the state density distribution dependent on the reference trajectory and the initial state distribution. With the neural density predictions, a differentiable collision risk can be computed efficiently. Now, the reference trajectory can be optimized by minimizing the collision risk with a gradient-based algorithm.

An example environment and the solution strategy is visualized in the figures below. For better visualizability, only stationary obstacles are considered.

solution part 1

Step 1: The control policy is defined. We will use a tracking controller such that all possible system trajectories stay close to a given reference trajectory.

solution part 2

Step 2: Dependent on the reference trajectory, the density distribution for the controlled system can be predicted at each time step.

solution part 3

Step 3: The reference trajectory is optimized on the basis of the density predictions in order to minimize the collision risk.

Contributions

Our motion planning approach has several advantages over prior work: The approach is valid for arbitrary initial probability distributions and nonlinear system dynamics. By predicting the probability distribution at each point in time, the approach is not over-cautious and can provide good estimates for the collision probabilities. Because of the neural network approximation of the closed-loop dynamics and the density function, and an efficient optimization framework, small planning times can be achieved. The resulting control strategy can be executed in real-time with low computational complexity. Additionally, the resulting trajectory is optimal in a given cost criteria and the gradient-based optimization method can easily overcome bad local minima by comparing the results of different start conditions.

Other main contributions of this work are:

  1. To the best of our knowledge, we are the first to propose a density-based, differentiable motion planning procedure for nonlinear systems with state and environment uncertainties.
  2. We provide an efficient method to compute the collision probability for closed-loop dynamics and an effective gradient-based algorithm for probabilistic safe trajectory planning.
  3. We test our approach on simulated and real-world testing cases where we outperform state-of- the-art motion planning methods.

BibTeX

@inproceedings{luetzow2023density,
  author    = {L\"{u}tzow, Laura and Meng, Yue and Armijos, Andres Chavez and Fan, Chuchu},
  title     = {Density Planner: Minimizing Collision Risk in Motion Planning with Dynamic Obstacles using Density-based Reachability},
  booktitle = {IEEE International Conference on Robotics and Automation},
  year      = {2023},
  pages      ={7886-7893},
  doi        ={10.1109/ICRA48891.2023.10161378}}
}