How MeasurementNoise is calculated for detections generated by fusionRadarSensor?

3 views (last 30 days)
The detection report generated by fusionRadarSensor has MeasurementNoise. How is MeasurementNoise parameter calculated inside fusionRadarSensor. Is there a way for user to provide MeasurementNoise parameter while using fusionRadarSensor?

Answers (1)

Elad Kivelevitch
Elad Kivelevitch on 14 Feb 2023
The following topic page provides a more detailed explanation for some of the questions: https://www.mathworks.com/help/radar/ug/measurement-accuracy-bias-and-resolution.html
The fusionRadarSensor, like other measurement-level radar model (radarDataGenerator, drivingRadarDataGenerator), uses the object radar cross section (RCS), the range to the object, and the radar loop gain to compute an estimated signal-to-noise (SNR). Generally speaking, a higher SNR would result in better (smaller) noise covariance.
In addition, the radar resolution impacts the radar measurement noise in each of the radar measurement axes: azimuth, elevation, range, and range-rate (Doppler).
Therefore, you can indirectly control the amount of reported noise by specifying the following properties:
Resolutions, or how well the radar resolves between objects in the scene: AzimuthResolution, ElevationResolution, RangeResolution, and RangeRateResolution.
Bias fractions (see the link above): AzimuthBiasFraction, ElevationBiasFraction, RangeBiasFraction, RangeRateBiasFraction.
Radar loop gain: ReferenceRange and ReferenceRCS.
Alternatively, you could simply set the MeasurementNoise value for each detection generated by the radar model. Simply loop through the detections and set the MeasurementNoise property on each detection to the value of your choice.
  1 Comment
A. S.
A. S. on 15 Feb 2023
Thanks for Answer Elad Still don't understand why Matlab has not provided any documentation (formula) regarding calculation of MeasurementNoise. I would like to customise this parameter in the simulations but in the absence of proper documentation finding it difficult to do so. The wayaround you suggested for manually changing MeasurementNoise parameter of the detections is ok. But I also want to change the 'actual' noise present in the detection measurements. There is still no easy way of doing it

Sign in to comment.

Categories

Find more on Data Synthesis in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!