This repository stores the Pytorch implementation of PAAD for the following paper:
Tianchen Ji, Arun Narenthiran Sivakumar, Girish Chowdhary, Katie Driggs-Campbell
published in IEEE Robotics and Automation Letters (RA-L), 2022
PAAD fuses camera, LiDAR, and planned path to predict the probability of future failure for robot navigation. The code was tested on Ubuntu 20.04 with Python 3.8 and Pytorch 1.8.1.
Despite the rapid advancement of navigation algorithms, mobile robots often produce anomalous behaviors that can lead to navigation failures. We propose a proactive anomaly detection network (PAAD) for robot navigation in unstructured and uncertain environments. PAAD predicts the probability of future failure based on the planned motions from the predictive controller and the current observation from the perception module. Multi-sensor signals are fused effectively to provide robust anomaly detection in the presence of sensor occlusion as seen in field environments. Our experiments on field robot data demonstrate superior failure identification performance than previous methods, and that our model can capture anomalous behaviors in real-time while maintaining a low false detection rate in cluttered fields.
More detailed comments can be found in the code. Here are some general descriptions:
-
nets
: Contains network architectures for PAAD. -
train.py
andtest.py
: Train and test PAAD on the dataset, respectively. -
custom_dataset.py
: Loads the dataset from CSV files and image folders. -
dataset_vis.py
: Visualizes a datapoint in the dataset. The annotated planned trajectory is projected onto the front-view image, and the 2D lidar scan around the robot is plotted. -
utils.py
: Contains the code for loss functions and metrics for quantitative results. -
rosnode
: Contains a rosnode which performs proactive anomaly detection in real-time using PAAD.
Both the offline dataset and the rosbags used for real-time test in the paper are available.
Each datapoint in the dataset consists of the following information:
- image: a front-view image of size 320 × 240.
- LiDAR scan: a range reading of size 1081, which covers a 270° range with 0.25° angular resolution.
- x coordinates of the planned trajectory in bird's-eye view
- y coordinates of the planned trajectory in bird's-eye view
- label: a vector of size 10, which indicates if the robot fails the navigation task in the next 10 time steps.
The reference frame, in which planned trajectories are defined, is as follows:
Sample datapoints from the dataset are as follows:
The training set consists of 29292 datapoints and contains 2258 anomalous behaviors collected over 5 days, while the test set consists of 6869 datapoints and contains 689 anomalous behaviors from data colected on 2 additional days.
The 6 rosbags used for the real-time test were collected on additional days and contain all the necessary perception signals for PAAD. The detailed related rostopics can be found in the sample code provided in rosnode
.
A minimal ROS workspace for running the real-time test of PAAD could look like this:
workspace_folder/ -- WORKSPACE src/ CMakeLists.txt fpn_msgs/ -- catkin package for custom msgs CMakeLists.txt package.xml msg/ Terrabot.msg proactive_ad/ -- catkin package for PAAD CMakeLists.txt package.xml src/ ad_paad.py nets/ ...
Please follow ROS tutorials to create ROS packages and msgs.
After the workspace is ready, PAAD can be tested in real time by executing the following steps:
- run
catkin_make
in the workspace. - run
python3 ad_paad.py
- play a bag file of your choice.
The RGB images and LiDAR point clouds can be visualized in real time through rviz.
If you find the code or the dataset useful, please cite our paper:
@article{ji2022proactive,
title={Proactive Anomaly Detection for Robot Navigation With Multi-Sensor Fusion},
author={Ji, Tianchen and Sivakumar, Arun Narenthiran and Chowdhary, Girish and Driggs-Campbell, Katherine},
journal={IEEE Robotics and Automation Letters},
year={2022},
volume={7},
number={2},
pages={4975-4982},
doi={10.1109/LRA.2022.3153989}}
Should you have any questions or comments on the code, please feel free to open an issue or contact the author at tj12@illinois.edu.