Event-based cameras are popular for tracking fast-moving objects due to their high temporal resolution, low latency, and high dynamic range. In this paper, we propose a novel algorithm for tracking event blobs using raw events asynchronously in real time. We introduce the concept of an event blob as a spatio-temporal likelihood of event occurrence where the conditional spatial likelihood is blob-like. Many real-world objects such as car headlights or any quickly moving foreground objects generate event blob data. The proposed algorithm uses a nearest neighbour classifier with a dynamic threshold criteria for data association coupled with an extended Kalman filter to track the event blob state. Our algorithm achieves highly accurate blob tracking, velocity estimation, and shape estimation even under challenging lighting conditions and high-speed motions (> 11000 pixels/s). The microsecond time resolution achieved means that the filter output can be used to derive secondary information such as time-to-contact or range estimation, that will enable applications to real-world problems such as collision avoidance in autonomous driving.
The paper was accepted by the 2024 IEEE Transactions on Robotics (TRO).
Ziwei Wang, Timothy Molloy, Pieter van Goor and Robert Mahony
[PDF] [IEEE Xplore]
If you use or discuss our event blob tracking method, please cite our paper as follows:
@Article{2024_Wang_AEB_Tracker_TRO, author = {Ziwei Wang and Timothy Molloy and Pieter {van Goor} and Robert Mahony}, journal = {IEEE Transactions on Robotics}, title = {Asynchronous Blob Tracker for Event Cameras}, year = {2024}, volume = {40}, pages = {4750-4767}, issn = {1552-3098}, doi = {10.1109/TRO.2024.3454410}, }
Dependencies:
Example of installing:
sudo apt update
sudo apt-get install libyaml-cpp-dev
sudo apt install libeigen3-dev
Tested Eigen3 version = 3.4.
Note: You may have to specify the path to your OpenCV/yaml-cpp/Eigen library in CMakeLists.txt
.
Our asynchronous comb filter is designed to be built as a cmake project. Assuming all prerequisites are installed and you are in the root folder of the repository, then you can follow these steps to build.
Run in release mode to track fast!
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j8
Click here to download the example dataset.
Unzip data.zip
into ./data
cd build
./aeb_tracker -i {config_file_name}
Choose the {config_file_name} from car
, spin-dot
or shapes
. E.g., ./aeb-tracker -i car
Note that most of the parameters do not need to be tuned, or they are not sensitive to different scenarios. For your own dataset, you can start with the configuration file of a similar dataset from the provided example data and adjust the parameters accordingly.
You can modify the parameters in configure files in ./configs
.
-
Kalman filter parameters.
var_
represents state covariances andq_
for process noise. We initialize targets with zero initial linear and angular velocity, and the initial target size is set to a value of at least two times larger than the maximum expected blob size to make the initial transient of the filter more robust. See Section V.A. in the paper for more discussions. -
dist_threshold
: distance threshold (in pixels) for data association. Tune this number based on the size of the target and the noisy background level.dist_threshold = 10
is a good number for relatively small targets. Do not use extremely smalldist_threshold
for very fast-moving targets.
-
select_target_flag
: 0 for using pre-setposition_x_init
andposition_y_init
in the config file; 1 for selecting targets by clicking on the video (press the Enter key to confirm).n_target
is the number of targets to track. Adjustn_target
accordingly. -
Only run parts of the datasets: set
process_ts_start
andprocess_ts_end
to control timestamps; orevent_num_start
andevent_num_end
to control event IDs to run. Only use one option and set the other option to-1
. -
alpha
: decay rate of the event-based image reconstructions. Only for display. -
save_video_flag
,save_image_flag
,save_track_falg
: 1 for saving video/image/tracks. Saving files slows down the program. Turn off unnecessary saving options. -
ref_image_ts_flag
: 1 for loading reference RGB images and timestamps. In theshapes
dataset, we provide an example of loading and displaying RGB images along with the event-reconstructed images. RGB images and image timestamps are loaded from{data_set_path}/reproject_rgb/
and{data_set_path}/image_ts.txt
.
Run ./aeb-tracker -i car
: TTC results will be saved to file ./data/car-rgb-ref/03/03_ttc.txt
. You can turn off TTC by setting compute_TTC_flag = 0
in the config file. Please note that the current version only supports computing TTC from a pair of targets (two targets).
Run ./aeb-tracker -i shapes
: IMU data will be loaded from file ./data/shapes/08/gyro.txt
. You can turn off IMU data loading by setting use_gyro_flag = 0
in the config file. IMU data are used for velocity updates in the current version. If you want to test on your own dataset, please modify the IMU and camera parameters, e.g., IMU bias and camera focal length in function load_gyro
in main.cpp
.
Run ./aeb-tracker -i spin-dot
: Click target on screen to track. Default target n_target = 1
, so you don’t need to press the Enter key.
The dot spins from very slow to very fast.
Should you have any questions or suggestions, please don't hesitate to get in touch with [email protected].