Multiple Target Tracking using data coming from a real device

9 ビュー (過去 30 日間)
健一
健一 2023 年 10 月 27 日
編集済み: 健一 2023 年 11 月 4 日
I'm planning to develop a multiple target tracking system using data coming from a real radar device. Outputs of the device are 1. range data, 2 azimuth data. In other words, those are point cloud data output at frame rate and not labeled. In this case, which MATLAB functions should I use to realize the goal?
The tools I have are as follows.
  • DSP System Toolbox
  • Phased Array System Toolbox
  • RF Toolbox
  • Radar Toolbox
  • Sensor Fusion and Tracking Toolbox
  • Signal Processing Toolbox
I appreciate if someone gives me a hint to solve this question.
  2 件のコメント
Walter Roberson
Walter Roberson 2023 年 10 月 27 日
What is the interface to the radar? When you ask for a radar scan, what are the outputs?
健一
健一 2023 年 10 月 27 日
Thank you for your response.
The outputs are just 2 items as shown below.
  • Range data [meter]
  • Azimuth data [radian]
Do I have to get other information to draw trajectories of multiple targets?

サインインしてコメントする。

採用された回答

Prashant Arora
Prashant Arora 2023 年 11 月 2 日
Hi,
You may find the examples linked below useful. These show how to track objects using data from TI mmWave Radars.
In general, the workflow to use azimuth, range data would be
  1. If possible, remove environment clutter from prior knowledge. A variety of techniques can be used here depending on the application. Typically, you can use doppler from radar to separate static and dynamic reflections. Another example is limiting the region of interest in your data.
  2. If your radar generates multiple returns from objects, you may need to cluster them (as shown in examples above) or use an extended object tracker. For an example on extended object tracker, refer to
3. To bring your "azimuth, range" data to tracker objectDetection format, check out the following example.
Hope this helps.
Thanks,
Prashant
  1 件のコメント
健一
健一 2023 年 11 月 4 日
編集済み: 健一 2023 年 11 月 4 日
Thank you very much for the response.
Those 2 examples are very helpful for me. I will try to write a code following the examples.
Regards,
Ken

サインインしてコメントする。

その他の回答 (1 件)

recent works
recent works 2023 年 10 月 27 日
To develop a multiple target tracking system using data from a real radar device in MATLAB, you have a good set of toolboxes that can help you with various aspects of radar signal processing and target tracking. Here's a high-level overview of how you can use these toolboxes to achieve your goal:
Data Preprocessing:
  • DSP System Toolbox and Signal Processing Toolbox: You can use these toolboxes to preprocess and filter the raw radar data, which includes range and azimuth data. You may need to perform filtering, noise reduction, and data calibration to improve the quality of the data.
Radar Signal Processing:
  • Phased Array System Toolbox and RF Toolbox: These toolboxes can help you model and simulate phased-array antennas and radar systems. You can use them to create radar waveform designs, simulate radar scenarios, and perform beamforming and angle estimation.
Radar Data Extraction:
  • Radar Toolbox: Use this toolbox to extract essential radar parameters from the data, such as target range, azimuth, and Doppler information. You can also explore clutter and interference rejection techniques.
Multiple Target Tracking:
  • Sensor Fusion and Tracking Toolbox: This toolbox is crucial for multiple target tracking. It provides various tracking algorithms and tools for data association, track initialization, and state estimation. You can choose from a variety of tracking filters (e.g., Kalman filter, particle filter) and data association methods (e.g., nearest neighbor, probabilistic data association) to implement your tracking system.
Visualization and Validation:
  • Use MATLAB's built-in functions and plotting capabilities to visualize the tracking results and validate the performance of your tracking system. You can also use the tools provided by the aforementioned toolboxes to generate plots and displays.
  1 件のコメント
健一
健一 2023 年 10 月 27 日
Thank you for your response. I see that the tools I have are good sets for multiple target tracking.
May I ask you to show which example code written in the MATLAB help document is suitable to grasp the way how to write a code for multiple target tracking using range and azimuth data output per frame.
As far as I know, example codes use data generated by the scenario generator and the output from it includes a variety of types of information that cannot output from actual radar devices. This leads me to trouble now.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Synthesis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by