Multiple Target Tracking using data coming from a real device
10 次查看(过去 30 天)
显示 更早的评论
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
2023-10-27
What is the interface to the radar? When you ask for a radar scan, what are the outputs?
采纳的回答
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
- 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.
- 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 个)
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Tracking and Sensor Fusion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!