This is the official code release for RP-net. It is the deep-learning system of Pointillism which estimates 3D bounding boxes from Cross-Potential point clouds generated by Pointillism
Download the dataset from DATASET into the data folder. It should follow the structure as shown below. You can use this repository to visualize the dataset.
About 300
frames are provided from each sensor for 48
different scenes. Each frame is time synchronized among all the sensors using system timestamps.
```
pointillism
└───data
└───scene{#} 'Where {} is omitted and # is the folder number'
└───lidar
└───*.pcd
└───radar_0
└───*.csv
└───radar_1
└───*.csv
└───images
└───*.jpg
└───label
└───*.json
```
python3 data_generator.py
. This generates the input point clouds and labels required for training the model It will create a folder input_files, where the generated npy files will be saved.We have provided a dockerfile to ease code sharing. The docker is based on
Build and run the docker image by running this command:
./run_docker.sh
Create an account on comet.ml in order to monitor performance metrics as the model is training. In the file RP-net.py, on line 235, enter the API key, project name, and workspace corresponding to the comet account. The API key can be found in Settings -> Developer Information.
./build_and_install.sh
. This installs the necessary libraries required for training. python3 RP-net.py
to start training the model.It is recommended to train the model for at least 200 epochs to achieve the best results.
The performance metrics are three MAP values and loss values. The three MAP values correspond to IoU thresholds of 0.5, 0.1, and 0.01.
@inproceedings{bansal2020pointillism,
title={Pointillism: accurate 3D bounding box estimation with multi-radars},
author={Bansal, Kshitiz and Rungta, Keshav and Zhu, Siyuan and Bharadia, Dinesh},
booktitle={Proceedings of the 18th Conference on Embedded Networked Sensor Systems},
pages={340--353},
year={2020}
}