DriveWorks SDK Reference
3.0.4260 Release
For Test and Development only

/dvs/git/dirty/gitlab-master_av/dw/sdk/samples/calibration/radar/README.md
Go to the documentation of this file.
1 # Copyright (c) 2019-2020 NVIDIA CORPORATION. All rights reserved.
2 
3 @page dwx_radar_calibration_sample Radar Calibration Sample
4 @tableofcontents
5 
6 @note SW Release Applicability: This sample is available in both **NVIDIA DriveWorks** and **NVIDIA DRIVE Software** releases.
7 
8 @section dwx_radar_calibration_descrption Description
9 
10 The NVIDIA<sup>&reg;</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.
15 
16 @section dwx_radar_calibration_running Running the Sample
17 
18 The Radar calibration sample, `sample_calibration_radar`, accepts the following optional parameters. If none are specified, the Radar extrinsics are estimated on
19 a default dataset.
20 
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]
28 
29 where
30 
31  --rig=[path/to/rig/configuration/file]
32  Path to the rig configuration file.
33  Default value: data/samples/recordings/highway0/rig8Radars.json
34 
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
38 
39  --radar-sensor=[integer]
40  The index or name of the radar sensor in the rig configuration file to calibrate
41  Default value: 0
42 
43  --camera-sensor=[integer]
44  The index or name of the camera sensor in the rig configuration file (used for visualization only)
45  Default value: 0
46 
47  --imu-sensor=[integer]
48  The index or name of the IMU sensor in the rig configuration file
49  Default value: 0
50 
51  --can-sensor=[integer]
52  The index or name of the CAN sensor in the rig configuration file
53  Default value: 0
54 
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.
57 
58 To pause the sample, press `SPACE`.
59 \n To exit the sample, press `ESC`.
60 
61 @note Depending on `--rigOutFile`, you may need to start the sample with **sudo**
62 
63 @section dwx_radar_calibration_output Output
64 
65 ![Radar Calibration Sample](sample_calibration_radar.png)
66 
67 @section dwx_radar_calibration_more Additional information
68 
69 For more information on Radar calibration, see @ref calibration_usecase_radar.