Ubuntu 24.04
Ubuntu 22.04
Ubuntu 20.04
Windows 11
Windows 10
Other (please specify):
GPU Information
Model: NVIDIA GeForce RTX 4090
Driver Version: CUDA Toolkit 12.8, Driver 12.6
Topic Description
Accessing the full data from the RTX radar, which is already initialized in the environment.
Detailed Description
In Isaac Sim 4.5, it was easy to create an annotator âRtxSensorGpuIsaacComputeRTXRadarPointCloudâ and use .get_data() to access the entire data from the sensor. But in Isaac Sim, the annotator got replaced with âIsaacExtractRTXSensorPointCloudNoAccumulatorâ, and if I do the same annotator.get_data(), I can only get the Cartesian points output. Is there any way to get the range, azimuth, and elevation values from the sensor in Isaac Sim 5.0?
Note: I have modified both the Example.json file and the radar attributes in the environment to 4D and FUUL_EL to get the full elevation data
Steps to Reproduce
Create a Radar sensor either through a script or directly in the environment
Create an annotator using the label mentioned above
Use annotator.get_data() function to access the radar output
Tried using different annotators. Went through the documentation top to bottom, didnât find a thing. It would be great if someone could point me to the proper document or example for understanding RTX Radar, other than the Isaac Sim documentation.
Unfortunately, no, Iâm in the same boat as you. I can only access the x, y, z Cartesian points and nothing else. If I try a different annotator, the output is just empty.
Finally, found a way to extract the azimuth, elevation, range and rcs information from the data. I have a attached a code below for your reference. Hope it helps.
Sorry for missing this topic. I also posted in a duplicate discussion (Synthetic Data Collection from RTX Radar · isaac-sim/IsaacSim · Discussion #242 · GitHub). Thanks for sharing your solution and sample code for extracting azimuth, elevation, range, and RCS from the GMO outputsâthis is really helpful for those navigating the RTX Radar sensor data changes in Isaac Sim 5.x.