Radar Inertial Datasets ICINS 2021

This dataset can be downloaded here and can be processed by our yaw aided radar inertial odometry pipeline ekf_yrio.

Contact me in case of questions or issues: Christopher Doer

The dataset consists of 5 carried and 4 manual flight indoor datasets recorded in an office building. Pseudo ground truth is available and was created using VINS with loops closure and subsequent manual removal of scale errors. A short summary of the datasets is given below:

NameTrajectory LengthDurationEnvironment
Carried 1287m273sOffice floor: offices, computer labs, long corridor
Carried 2451m392sOffice floor: offices, computer labs, long corridor
Carried 3235m171sOffice floor: labs, meeting room, long corridor
Carried 4311m220sOffice floor: labs, meeting room, long corridor
Carried 5228m172sBasement: workshop, long corridor
Manual Flight 1147m180sOffice floor: furnished offices, computer labs, long corridor
Manual Flight 249m75sOffice floor: labs, long corridor
Manual Flight 3149m178sOffice floor: labs, long corridor
Manual Flight 479m110sOffice floor: labs, long corridor

Cite

If you use this dataset for your academic research, please cite our related paper:

@INPROCEEDINGS{DoerICINS2021,
  author={Doer, Christopher and Trommer, Gert F.},
  booktitle={2021 28th Saint Petersburg International Conference on Integrated Navigation Systems (ICINS)}, 
  title={Yaw aided Radar Inertial Odometry uisng Manhattan World Assumptions}, 
  year={2021}
}

Known Issues

Sensor Setup

The sensor platform is equipped with a FMCW radar sensor (TI IWR6843AOP) and an IMU (Analog Devices ADIS16448). All sensors are synchronized using a microcontroller board which actively triggers measurements. The IMU runs at 409Hz and the radar sensors at 10Hz.

The TI IWR6843AOP is an FMCW radar sensor which integrates also the antenna array (3Tx and 4Rx) on a single chip. It operates at 60GHz and features a Field of View (FOV) of circa 120deg in azimuth and elevation. All radar signal processing is done on chip providing the radar scan data. The radar sensor is mounted at approx. 45deg pointing to the left.

Sensor platform (carried datasets)

image

Extrinsic calibration of the sensor platform (carried datasets):

## Extrinsic calibration of body frame to radar frame
# translation of radar frame expressed in body frame
l_b_r_x: 0.05
l_b_r_y: 0.08
l_b_r_z: 0.07

# rotation radar frame to body frame
q_b_r_w: 0.93354
q_b_r_x: -0.00502
q_b_r_y: 0.01127
q_b_r_z: -0.35827

Quadcopter (manual flight datasets)

image

Extrinsic calibration of the quadcopter (flight datasets):

## Extrinsic calibration of body frame to radar frame
# translation of radar frame expressed in body frame
l_b_r_x: 0.01
l_b_r_y: 0.10
l_b_r_z: 0.06

# rotation radar frame to body frame
q_b_r_w: -0.01185
q_b_r_x:  0.36648
q_b_r_y:  0.93033
q_b_r_z:  0.00560

Radar Configuration

The datasets have been recorded using the following configuration:

% Radar configuration for Radar Inertial Datasets ICINS 2021 
% If you use this config for your academic research, please cite our related paper: 
% C.Doer, G.F.Trommer: Yaw aided Radar Inertial Odometry uisng Manhattan World Assumptions; ICINS2021
% 
% Generated Chirp
% d_max_final : 20.00 m
% d_res_final : 0.07 m
% d_interbin : 0.08 m
% v_max_final: 4.00 m/s
% v_res_final: 0.13 m/s
% v_interbin: 0.12 m/s
%
% Chirp Params
% N_range: 256
% N_frames: 60
% N_velocity_fft: 64
% T_f : 18.39 ms
% T_c : 102.19 us
% T_ramp : 63.75 us
% T_idle : 38.44 us
% T_adc_valid : 7.00 us
% T_adc_end_margin : 2.00 us
% f_sample : 4675.80 ksps
% S : 35.04 MHz/us
% B : 2.23 GHz
% radar_cube_size : 786.43 KB
% Config
%
sensorStop
flushCfg
dfeDataOutputMode 1
channelCfg 15 7 0
adcCfg 2 1
adcbufCfg -1 0 1 1 1
profileCfg 0 60.00 38.44 7.00 63.75 0 0 35.04 1.00 255 4675.80 0 0 30
chirpCfg 0 0 0 0 0 0 0 1
chirpCfg 1 1 0 0 0 0 0 2
chirpCfg 2 2 0 0 0 0 0 4
frameCfg 0 2 60 0 95.00 2 0.00
lowPower 0 0
guiMonitor -1 1 0 0 0 0 1
cfarCfg -1 0 2 8 4 3 0 8 0
cfarCfg -1 1 0 4 2 3 1 20 1
multiObjBeamForming -1 1 0.5
clutterRemoval -1 0
aoaFovCfg -1 -90 90 -90 90
cfarFovCfg -1 0 0.1 19.0
cfarFovCfg -1 1 -8.00 8.00
calibDcRangeSig -1 0 -5 8 256
extendedMaxVelocity -1 0
lvdsStreamCfg -1 0 0 0
compRangeBiasAndRxChanPhase 0.0 -1 0 1 0 -1 0 1 0 -1 0 1 0 -1 0 1 0 -1 0 1 0 -1 0 1 0
measureRangeBiasAndRxChanPhase 0 1.0 0.2
CQRxSatMonitor 0 3 5 103 0
CQSigImgMonitor 0 95 6
analogMonitor 0 0
sensorStart

Note that compRangeBiasAndRxChanPhase should be adapted according to your radar sensor calibration.

Data Format

Each carried and flight dataset consists of three files (details below):

Rosbag

The sensor data is provided with rosbags containing the following topics:

The point cloud point type is sketched below, for an example implementation see radar_point_cloud.h and radar_point_cloud.cpp:

struct RadarPointCloudType
{
  PCL_ADD_POINT4D;      // position in [m]
  float snr_db;         // CFAR cell to side noise ratio in [dB]
  float v_doppler_mps;  // Doppler velocity in [m/s]
  float noise_db;       // CFAR noise level of the side of the detected cell in [dB]
  float range;          // range in [m]
  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
} EIGEN_ALIGN16;
                                  
pcl::PointCloud<RadarPointCloudType> your_pcl;

Pseudo Ground Truth

The pseudo ground truth is provided with csv files (separator: whitespace).
The format is: timestamp p^w_x p^w_y p^w_z q^w_x q^w_y q^w_z q^w_w
with the global position p^w and attitude quaternion q^w.
This file format is compatible e.g. with rpg_trajectory_evaluation for trajectory evaluation as done in our paper.

Evaluation Result of Doer et.al. ICINS 2021

The evaluation result using the approach of our related paper is also included in this dataset. These results can be created using a single script resulting in the analysis below.

Translation RMSE Carried Datasets

Algorithmcarried_1carried_2carried_3carried_4carried_5Mean
VINS (no loop closures)0.210.330.330.410.200.30
ekf_rio w/o barometer0.670.300.320.370.370.41
ekf_rio w/ barometer0.650.270.290.360.310.37
ekf_yrio w/o barometer0.300.230.290.350.360.30
ekf_yrio w/ barometer0.320.270.230.310.280.28

Translation RMSE Flight Datasets

Algorithmflight_1flight_2flight_3flight_4Mean
VINS (no loop closures)0.390.130.170.190.22
ekf_rio w/o barometer0.320.150.290.310.27
ekf_rio with barometer0.280.170.270.310.26
ekf_yrio w/o barometer0.270.120.310.160.22
ekf_yrio with barometer0.230.150.260.160.20

Relative Errors

relative errors

Pseudo Ground Truth Plots

Below are all datasets with pseudo ground truth (blue) and ground plans (black).

Carried 1

image

Carried 2

image

Carried 3

image

Carried 4

image

Manual Flight 1

image

Manual Flight 2

image

Manual Flight 3

image

Manual Flight 4

image