1 # Copyright (c) 2019-2020 NVIDIA CORPORATION. All rights reserved.
3 @page dwx_radar_calibration_sample Radar Calibration Sample
6 @note SW Release Applicability: This sample is available in both **NVIDIA DriveWorks** and **NVIDIA DRIVE Software** releases.
8 @section dwx_radar_calibration_descrption Description
10 The NVIDIA<sup>®</sup> DriveWorks Radar self-calibration sample shows how to use the
11 DriveWorks Radar self-calibration module. The sample uses RadarDopplerMotion to determine the radar motion for each radar scan.
12 Then, use the corresponding radar motion to estimate the radar yaw angle. Using radar we can calibrate
13 also other odometry properties. That is `velocity_factor`, which maps speed measurement as reported by the odometry to speed as measured using radars,
14 and `wheel_radius[]` which is the radius of each wheel.
16 @section dwx_radar_calibration_running Running the Sample
18 The Radar calibration sample, `sample_calibration_radar`, accepts the following optional parameters. If none are specified, the Radar extrinsics are estimated on
21 ./sample_calibration_radar --rig=[path/to/rig/configuration/file]
22 --output-rig=[output/rig/file]
23 --radar-sensor=[integer/sensor-name]
24 --camera-sensor=[integer/sensor-name]
25 --imu-sensor=[integer/sensor-name]
26 --can-sensor=[integer/sensor-name]
27 --calibrate-odometry-properties=[1]
31 --rig=[path/to/rig/configuration/file]
32 Path to the rig configuration file.
33 Default value: data/samples/recordings/highway0/rig8Radars.json
35 --output-rig=[output/rig/file]
36 Output rig configuration file, which contains updated Radar Extrinsics, velocity_factor, and updated wheel radii.
37 Default value: rig_updated.json
39 --radar-sensor=[integer]
40 The index or name of the radar sensor in the rig configuration file to calibrate
43 --camera-sensor=[integer]
44 The index or name of the camera sensor in the rig configuration file (used for visualization only)
47 --imu-sensor=[integer]
48 The index or name of the IMU sensor in the rig configuration file
51 --can-sensor=[integer]
52 The index or name of the CAN sensor in the rig configuration file
55 --calibrate-odometry-properties=[1]
56 Bitwise combination of: [1] wheel radius calibration using selected radar [2] enable odometry speed factor. Specifying [3] will enable both.
58 To pause the sample, press `SPACE`.
59 \n To exit the sample, press `ESC`.
61 @note Depending on `--rigOutFile`, you may need to start the sample with **sudo**
63 @section dwx_radar_calibration_output Output
65 
67 @section dwx_radar_calibration_more Additional information
69 For more information on Radar calibration, see @ref calibration_usecase_radar.