Tracking scenario simulation problems for active sonar sensor
12 次查看(过去 30 天)
显示 更早的评论
I am attempting to use the Sensor Fusion and Tracking Toolbox for active sonar applications. I started with the simulation of a tracking scenario and encountered some problems.
For active sonar The FieldOfView property and the MountingAngles property should be defined separately for the emitter and for the receiver sonar. However, matlab produces a warning (that these properties are not revent in this system configuration). Furthermore, when obtaining detections using the sonar object the output rxConfigsdoes not get the the FieldOfView property and the MountingAngles defined for the sonar sensor, but only those of the emitter.
Matlab warning after definition of properties
Furthermore, the command below
[detections, numDets, rxConfigs] = sonar(sigs,txConfigs,timeSim);
produces only false alarms, no target detections are produced.
3 个评论
Gowtham
2023-9-26
Hi Miri,
I have understood the requirement, but I need a sample code describing the functions used in order to further investigate the issue. Is it possible for you to share the relevant files or provide a sample code? This would be very helpful in providing effective assistance.
回答(2 个)
Gowtham
2023-9-29
Hello Miri,
I understand that you are utilizing the Sensor Fusion and Tracking Toolbox to simulate a tracking scenario and have come across a warning related to the properties of the sonarSensor object.
Upon reviewing your provided code snippet, I attempted to run it at my end. As a result, I encountered the following warning message:
Upon considering the provided information, it appears that the issue is related to the setProperties function within the ScanningMount class.
It is likely that there are other properties within the sonarSensor object that are taking precedence over the 'FieldOfView' and 'MountingAngles' properties, resulting in the warning message. To address this, I recommend reviewing the dependencies and interactions of these properties with others to ensure they are properly configured.
Additionally, resolving this warning may also help resolve the issue with 'rxConfigs' that you mentioned earlier. By addressing the warning and ensuring the correct configuration of properties, it is possible that the issue with 'rxConfigs' will be resolved as well.
Kindly refer to the following MATLAB documentation for further understanding on ‘sonarSensor’ object, ‘setProperties’ function and ‘inactive property’
- https://www.mathworks.com/help/releases/R2022b/fusion/ref/sonarsensor-system-object.html
- https://www.mathworks.com/help/releases/R2022b/matlab/ref/matlab.system.setproperties.html
- https://www.mathworks.com/help/releases/R2022b/matlab/ref/matlab.system.isinactivepropertyimpl.html
Hope this helps.
Best Regards,
Gowtham
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with Sensor Fusion and Tracking Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!