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!