![]() |
radar_plugin package from crlfnet reporadar_plugin msgs per_msgs pkg point_cloud site_model velodyne_description velodyne_gazebo_plugins velodyne_simulator |
Package Summary
Tags | No category tags. |
Version | 1.0.0 |
License | TODO |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/orangesodahub/crlfnet.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2023-03-25 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Sanat Mharolkar
Authors
Package for Delphi ESR and SRR radar plugins for Gazebo
Details:
The Delphi ESR and SRR radars have been modelled using logical cameras, since these radars try to return the centroids of obstacles. Logical cameras return the centroid of any object whose collision bounding box intersects with the frustum of the logical camera’s view. The ESR uses 2 logical cameras, and the SRR uses 1 logical camera.
The specifications of each radar have been kept as close to the original as possible:
-
ESR: Range - Minimum 1m, Mid-range max 60m, Long-range max 174m
FOV - Horizontal +-45 degrees for mid-range, +-10 degrees
Vertical 4.5 degrees
Mass - 575g
Max objects - 64
Update rate - 50 ms -
SRR: Range - Minimum 0.5m, Max range 80m
FOV - Horizontal +-75 degrees
Vertical 10 degrees
Mass - 380g
Max objects - 64
Update rate - 50 ms
To model the radars as accurately as possible, the plugins have a feature for checking occlusion. The value of occlusion parameter set determines how much percentage of an object can be blocked from view by any other obstacle before the object is not detected by the radar. For this feature, a number of points on the object are sampled and ray-traced from the sensor origin to check if any obstacles are blocking it.
The radar plugin also contains a function to add Gaussian noise to the measurements, whose parameters can be set as required.
To install:
- Clone the package in a catkin workspace
- Build
To add a radar to a robot, simply include the xacro of the corresponding radar. Specify the origin of the joint, the parent link and the radar parameters.
Parameters:
- name –> For ESR, the names can be “ESRFront”, “ESRRight”, “ESRLeft”. For SRR, the names can be “SRRRight”, “SRRLeft”.
- radarTopic –> Default topic name to publish the data is “/radar_obstacles” if using only one radar. If using all/multiple radars, set the following topic names for each radar: “/esr_front_obstacles”, “/esr_left_obstacles”, “/esr_right_obstacles”, “/srr_right_obstacles”, “/srr_left_obstacles”, and run radarMsgCombiner node.
- velTopic –> The topic name for the velocity of the parent vehicle. Default set to sim_car/vel_of_car
- occlusion –> Value from 0 to 1, to define the percentage of occlusion allowed
- samplePoints –> The square of this number is the number of points that are ray-traced for checking occlusion
- noiseDev –> The standard deviation for the Gaussian noise model
Issues:
- Using multiple radars in a highly complex world slows down the simulation as it becomes too computationally heavy. It works well in less detailed worlds.
- The frustum of a logical camera is a pyramid and not a spherical sector. Hence, for larger angles, the model has a larger range than the real-life radar.
- The occlusion function at times does not work as expected due to the Gazebo message queue limit being reached while requesting model states.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
gazebo_plugins | |
gazebo_ros | |
roscpp | |
per_msgs | |
catkin | |
message_runtime |