The precomputed 3D detections were computed on the Argoverse dataset using the method described in Class-balanced Grouping and Sampling for Point Cloud 3D Object Detection, with detection range increased to 100 meters in each direction and pruned to ROI to match Argoverse annotation policy.
The detections can be freely downloaded at our 3d tracking competition page [.zip].
This code extends AB3DMOT, subject to its license. However, instead of tracking in the camera coordinate frame (as AB3DMOT does), we perform tracking in the Argoverse city coordinate frame (see Argoverse paper and appendix).
Instead of greedily matching sporadic detections, we solve a number of independent estimation problems (filtering) in a factor graph. Specifically, we use the IoU metric to perform data association (decoupling the estimation problems), and then consider each 3D detection as a measurement of an unknown state for a particular vehicle.
As of Wednesday April 15, 2020 this implementation took 1st place on the Argoverse 3d tracking test set (leaderboard). Several per-metric results are here:
Car MOTA |
Pedestrian MOTA |
Car MOTPD |
Pedestrian MOTPD |
Car MT (Mostly Tracked) |
Pedestrian MT (Mostly Tracked) |
Car FN |
Ped. FN |
---|---|---|---|---|---|---|---|
65.90 | 48.31 | 0.34 | 0.37 | 0.51 | 0.28 | 23,594 | 25,780 |
Tracking in the "city frame" is advantageous over tracking in the egovehicle frame or camera coordinate frame since parked cars are constant in the city frame. You can find our technical report here (runner up at Neurips 19 Argoverse 3D Tracking Competition that used less high-quality detections from PointPillars, achieving 48.33 Car MOTA).
First, install the argoverse-api
module from here. Also download the data (egovehicle poses will be necessary),
Next, download the detections zip file, unzip them.
To run the tracker, pass the path to the unzipped detections directory, which should end in argoverse_detections_2020
, to run_ab3dmot.py
, as shown below:
DETECTIONS_DATAROOT="/path/to/argoverse_detections_2020" # replace with your own path
POSE_DIR="/path/to/argoverse/data" # should be either val or test set directory
SPLIT="val" # should be either 'val' or 'test'
python run_ab3dmot.py --dets_dataroot $DETECTIONS_DATAROOT --pose_dir $POSE_DIR --split $SPLIT
-
ab3dmot.py
: kalman filter state management (modified from original) -
detections_README.md
: explanation of how detections are provided -
iou_utils.py
: simple intersection-over-union utilities -
run_ab3dmot.py
: execute the tracker on 3d detections which must be provided in egovehicle frame -
transform_utils.py
: upgrade SE(2) poses to SE(3) and vice versa -
tests
test_iou_utils.py
: a few unit tests
-
visualization
(can be ignored): patches on argoverse-api for better visualization/easier evalcuboids_to_bboxes.py
: improved script for visualizing tracks (original is in argoverse-api)object_label_record.py
: updated classes to support visualizing tracks (original is in argoverse-api)eval_tracking.py
: slightly more user-friendly interface for evaluation scriptdump_to_argoverse.py
: Lift SE(2) detections (e.g. PointPillars) to SE(3)
Open-source Implementation
@misc{
author = {John Lambert},
title = {Open Argoverse CBGS-KF Tracker},
howpublished={\url{https://github.com/johnwlambert/argoverse_cbgs_kf_tracker}},
year = {2020},
}
This code is provided by myself for purely non-commercial, research purposes. It may not be used commercially in a product without my permission.