Skip to content

leggedrobotics/viplanner

Repository files navigation

ViPlanner: Visual Semantic Imperative Learning for Local Navigation

Project PagearXivVideoBibTeX

Click on image for demo video! Demo Video

ViPlanner is a robust learning-based local path planner based on semantic and depth images. Fully trained in simulation, the planner can be applied in dynamic indoor as well outdoor environments. We provide it as an extension for NVIDIA Isaac-Sim within the Orbit project (details here). Furthermore, a ready to use ROS Noetic package is available within this repo for direct integration on any robot (tested and developed on ANYmal C and D).

Keywords: Visual Navigation, Local Planning, Imperative Learning

Install

  • Install pyproject.toml with pip by running:
    pip install .
    or
    pip install -e .[standard]
    if you want to edit the code. To apply the planner in the ROS-Node, install it with the inference setting:
    pip install -e .[standard,inference]
    Make sure the CUDA toolkit is of the same version as used to compile torch. We assume 11.7. If you are using a different version, adjust the string for the mmcv install as given . If the toolkit is not found, set the CUDA_HOME environment variable, as follows:
    export CUDA_HOME=/usr/local/cuda
    
    On the Jetson, please use
    pip install -e .[inference,jetson]
    as mmdet requires torch.distributed which is only build until version 1.11 and not compatible with pypose. See the Dockerfile for a workaround.

Known Issue

  • mmcv build wheel does not finish:
    • fix by installing with defined CUDA version, as detailed here. For CUDA Version 11.7 and torch==2.0.x use
    pip install mmcv==2.0.0 -f https://download.openmmlab.com/mmcv/dist/cu117/torch2.0/index.html
    

Extension

This work includes the switch from semantic to direct RGB input for the training pipeline, to facilitate further research. For RGB input, an option exist to employ a backbone with mask2former pre-trained weights. For this option, include the github submodule, install the requirements included there and build the necessary cuda operators. These steps are not necessary for the published planner!

pip install git+https://github.com/facebookresearch/detectron2.git
git submodule update --init
pip install -r third_party/mask2former/requirements.txt
cd third_party/mask2former/mask2former/modeling/pixel_decoder/ops \
sh make.sh

Remark

Note that for an editable install for packages without setup.py, PEP660 has to be fulfilled. This requires the following versions (as described here in detail)

Training

Here an overview of the steps involved in training the policy. For more detailed instructions, please refer to TRAINING.md.

  1. Training Data Generation
    Training data is generated from the Matterport 3D, Carla and NVIDIA Warehouse using developed Isaac Sim Extension, that are open-sourced. Currently, the extensions are updated to the latest Orbit version and will be available soon, an intermediate solution is given here.

  2. Build Cost-Map
    The first step in training the policy is to build a cost-map from the available depth and semantic data. A cost-map is a representation of the environment where each cell is assigned a cost value indicating its traversability. The cost-map guides the optimization, therefore, is required to be differentiable. Cost-maps are built using the cost-builder with configs here, given a pointcloud of the environment with semantic information (either from simultion or real-world information).

  3. Training
    Once the cost-map is constructed, the next step is to train the policy. The policy is a machine learning model that learns to make decisions based on the depth and semantic measurements. An example training script can be found here with configs here

  4. Evaluation
    Performance assessment can be performed on simulation and real-world data. The policy will be evaluated regarding multiple metrics such as distance to goal, average and maximum cost, path length. In order to let the policy be executed on anymal in simulation, please refer to Omniverse Extension

Inference

  1. Real-World

    ROS-Node is provided to run the planner on the LeggedRobot ANYmal, for details please see ROS-Node-README.

  2. NVIDIA Isaac-Sim

    The planner can be executed within Nvidia Isaac Sim. It is implemented as part of the Orbit Framework with an own extension. For details, please see Omniverse Extension.

Model Download

The latest model is available to download: [checkpoint] [config]

Citing ViPlanner

@article{roth2023viplanner,
  title     ={ViPlanner: Visual Semantic Imperative Learning for Local Navigation},
  author    ={Pascal Roth and Julian Nubert and Fan Yang and Mayank Mittal and Marco Hutter},
  journal   = {2024 IEEE International Conference on Robotics and Automation (ICRA)},
  year      = {2023},
  month     = {May},
}

License

This code belongs to Robotic Systems Lab, ETH Zurich. All right reserved

Authors: Pascal Roth, Julian Nubert, Fan Yang, Mayank Mittal, and Marco Hutter
Maintainer: Pascal Roth, rothpa@ethz.ch

The ViPlanner package has been tested under ROS Noetic on Ubuntu 20.04. This is research code, expect that it changes often and any fitness for a particular purpose is disclaimed.

About

ViPlanner: Visual Semantic Imperative Learning for Local Navigation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published