Isaac Sim Version
4.2.0
Operating System
Ubuntu 24.04
Hi.
I am developing an extension using the the ultrasonic sensor.
But I am seeing this is deprecated and will be removed later.
I don’t know if it’s possible that I can get the source code for this sensor. Essentailly, enough resources for us to implement this function and get its interface
result, prim = omni.kit.commands.execute(
“RangeSensorCreateUltrasonicArray”,
path=“/UltrasonicArray”,
parent=None,
min_range=0.4,
max_range=3.0,
draw_points=False,
draw_lines=False,
horizontal_fov=15.0,
vertical_fov=10.0,
horizontal_resolution=0.5,
vertical_resolution=0.5,
num_bins=224,
use_brdf: bool = False,
use_uss_materials: bool = False,
emitter_prims=,
firing_group_prims=,
)
I am assuming this is written in cpp from PhysX raycast()
We are planning to publish this extension and we don’t want to limit our users to 4.2.0 only.
Or if you have any suggestions on other modules we may want to develop with.
I know by generic range sensor we can get the point cloud but essentially we also want to have each ray cast intensities.
We want to get intensities adjusted based on uss materials, so as far as I can find, this is the only module can do that.
Thanks. Any suggestions are welcomed.