- Added lidar visibility feature (sensors can now ignore specific entities during raytracing)
- Added new constants for sensor identification:
RGL_SENSOR_ID_DEFAULTRGL_SENSOR_ID_NONE
- Added API call to set a sensor ID that will ignore a given entity in raytracing:
rgl_entity_set_ignored_by_sensor
- Added API call to assign a sensor identifier to RaytraceNode:
rgl_node_raytrace_configure_id
- Added new constants for sensor identification:
- Added Agnocast extension enabling zero-copy ROS2 publishing via shared memory
- Added build option in CMakeLists:
RGL_BUILD_AGNOCAST_EXTENSION
- Added API call to configure Agnocast on a ROS2 publishing node:
rgl_node_configure_agnocast
- Added build option in CMakeLists:
- Added detection states to radar nodes
- Extended
RadarPostprocessPointsNodecluster statistics with standard deviations of azimuth, elevation, distance, and radial speed - Added per-detection state data (azimuth, elevation, distance, radial speed with their standard deviations, RCS, detection ID, object ID) to
RadarTrackObjectsNode
- Extended
- Added ROS2 RadarTracks publishing
- Added API call to publish RadarTracks message into ROS2 topic:
rgl_node_publish_ros2_radartracks
- Added API call to publish RadarTracks message into ROS2 topic:
- Bumped minimum supported GPU architecture to NVIDIA Turing (GeForce RTX 2000 series, sm_75)
- Removed support for older deprecated CUDA architectures
- Updated runtime requirements documentation accordingly
- This was required to resolve runtime errors observed when running RGL binaries built against the deprecated architecture on the latest NVIDIA drivers
- Removed tracking of ROS2 publishers in
Ros2InitGuard- Creating multiple publishers for the same topic is now allowed
- Fixed recursion when retracing rays through ignored entities moving along a triangle surface
- Increased the ray iteration offset to reliably avoid re-hitting the same triangle
- Fixed incorrect error message in
RadarPostprocessPointsNodevalidation - Fixed object width calculation in
RadarTrackObjectsNode
- Added concept of reflectivity calculated as (alpha * intensity * distance^2)
- Added a new field
RGL_FIELD_REFLECTIVITY_F32
- Added a new API call to configure reflectivity alpha values for RaytraceNode
rgl_node_raytrace_configure_reflectivity_alpha
- Added a new field
- Fixed hit point displacement calculation resulting from the animation
- Added skeleton animation (mesh skinning) performed on GPU
- Added API call to assign bone weights to the mesh
rgl_mesh_set_bone_weights
- Added API call to assign restposes to the mesh
rgl_mesh_set_restposes
- Added API call to set the current pose of the given Entity in world coordinates
rgl_entity_set_pose_world
- Added API call to assign bone weights to the mesh
- Added multi-return outputs
- Multi-return point clouds can be post-processed and outputted by RGL
- Added more return types supported (second, strongest, second strongest)
- Added API call to configure return mode
rgl_node_raytrace_configure_return_mode
- Added support for ROS 2 Jazzy
- Changed API calls for handling animations resulted from external animation system
- Removed API call to update vertices of the mesh
rgl_mesh_update_vertices
- Added API call to update vertices of the entity
rgl_entity_apply_external_animation
- In current implementation, meshes that are animated can be shared between entities
- Previously, such meshes must be duplicated because vertices were updated in the mesh object
- Now, the entity holds its copy of animated vertices
- Removed API call to update vertices of the mesh
- Renamed API call for setting transform of the entity
rgl_entity_set_pose->rgl_entity_set_transform- Pose is considered as set of skeleton bones transforms
- Fixed error message from yield node when trying to get field data that was not requested
- Removed API call to switch between return modes:
rgl_node_multi_return_switch- Replaced by
rgl_node_raytrace_configure_return_mode
- Added radar object tracking feature
- Added API call to produce point cloud with radar objects
rgl_node_points_radar_track_objects
- Added API call to produce point cloud with radar objects
- Added mechanism to simulate fault injection
- Added API call to mask groups of rays
rgl_node_raytrace_configure_mask
- Added API call to mask groups of rays
- Added multi-return simulation
- Currently, this feature is limited to outputting a single return point cloud, but the user can select which return mode is simulated (first or last)
- Added API call to configure beam divergence
rgl_node_raytrace_configure_beam_divergence
- Added API call to switch between return modes:
rgl_node_multi_return_switch
- Added new fields:
RGL_FIELD_INTENSITY_U8andRGL_FIELD_TIME_STAMP_U32- These fields are duplicates of existing fields but are stored in other data types
- Added default intensity configuration
- Added API call to configure default intensity
rgl_node_raytrace_configure_default_intensity
- Default intensity is considered when hitting entities with no intensity texture set
- Added API call to configure default intensity
- Renamed ROS2 field name for
RGL_FIELD_RING_IDring->channel
- Changed the content of time stamp fields (
RGL_FIELD_TIME_STAMP_F64andRGL_FIELD_TIME_STAMP_U32)- Previously, it was time on the scene when the raytrace is triggered
- Now, it holds the time have passed since the time of the raytrace trigger when given point was measured
- If velocity distortion is disabled, the time stamp for all points will be zero
- Intensity value of the point is based on intensity texture of the entity and the incident angle
- The influence of the incident angle was added
- Removed deprecated API call
rgl_node_points_compact- Please use
rgl_node_points_compact_by_fieldinstead.
- Added radar sensor simulation
- Added API call to process point cloud to create radar-like output
rgl_node_points_radar_postprocess
- Added API call to remove ground using RANSAC method to fit the plane model to the point cloud
rgl_node_points_remove_ground
- Added API call to filter ground based on the incident angle of the ray hitting the mesh triangle
rgl_node_points_filter_ground
- Added API call to publish RadarScan message into ROS2 topic
rgl_node_publish_ros2_radarscan
- Added new fields (point attributes) calculation:
- Velocity of the hit point on the entity. Depends on entity's linear and angular velocity, and mesh deformations (inferred from calls
rgl_entity_set_pose,rgl_scene_set_timeandrgl_mesh_update_vertices).RGL_FIELD_ABSOLUTE_VELOCITY_VEC3_F32RGL_FIELD_RELATIVE_VELOCITY_VEC3_F32RGL_FIELD_RADIAL_SPEED_F32
- Normal vector of the mesh triangle where the hit-point is located
RGL_FIELD_NORMAL_VEC3_F32
- Incident angle of the ray hitting the mesh triangle
RGL_FIELD_INCIDENT_ANGLE_F32
- Azimuth and elevation angle of the hit point
RGL_FIELD_AZIMUTH_F32RGL_FIELD_ELEVATION_F32
- Velocity of the hit point on the entity. Depends on entity's linear and angular velocity, and mesh deformations (inferred from calls
- Added API call to process point cloud to create radar-like output
- Added API call to compact point cloud by given field (
RGL_FIELD_IS_HIT_I32orRGL_FIELD_IS_GROUND_I32)rgl_node_points_compact_by_field- At the same time,
rgl_node_points_compactbecame deprecated
- Added set of calls to check if API objects are still valid
rgl_mesh_is_alivergl_entity_is_alivergl_texture_is_alivergl_node_is_alive
- Added raytrace node configurations
- Added API call to configure values for non-hit points
rgl_node_raytrace_configure_non_hits
- Added API call to configure sensor velocity (necessary for velocity distortion or calculating fields
RGL_FIELD_RELATIVE_VELOCITY_VEC3_F32andRGL_FIELD_RADIAL_SPEED_F32)rgl_node_raytrace_configure_velocity
- Added API call to configure (turn on/off) velocity distortion
rgl_node_raytrace_configure_distortion
- Added API call to configure values for non-hit points
- Added support for LiDAR reflective value (similar to intensity but set as a single floating-point value for the entire entity)
- Added API call to set laser retro value to the entity
rgl_entity_set_laser_retro
- Note: could be replaced with 1x1 float-type texture in the future
- Added API call to set laser retro value to the entity
- Added CI to the project using GitHub actions
- Added static build option
- Added variable to the CMakeLists (default OFF):
RGL_BUILD_STATIC
- Added variable to the CMakeLists (default OFF):
- Optimized tape files format to be lighter and be loaded faster
- Note: old tape files are not compatible
- Improved docker-based build pipeline
- Introduced multistage dockerfile for the build process
- Decoupled dependency installation from compilation scripts (better caching)
- Removed API call for modifying RaytraceNode to apply velocity distortion
rgl_node_raytrace_with_distortion- Replaced by
rgl_node_raytrace_configure_distortion
- Fixed Gaussian noise nodes to always perform in rays coordinates
- Fixed distance Gaussian noise to apply error based on distance traveled by the ray (not distance to rays coordinates origin)
- Fixed graph validation when rays definition is modified
- Fixed a bug introduced in v0.16.0 causing RGL to crash in Compact and Downsample Node when some field was removed from the graph.
- Added API calls to set relative node's priority, which determines their execution order within a graph (but not between graphs).
rgl_graph_node_set_priorityrgl_graph_node_get_priority
rgl_graph_run(...)is now fully asynchronous, i.e. it will initiate computations without waiting for them to finish- RGL API calls attempting to obtain results from a given node will block until the node has completed execution
- RGL API calls modifying scene will block until all graphs have completed execution
- Running a graph will block until the previous run has been completed
- Changed internal implementation of Entity ID feature
- The Entity ID is now held in a 28-bit integer (OptiX limit) instead of a 32-bit integer
- Renamed XYZ field name to be more precise and compatible with future features
RGL_FIELD_XYZ_F32->RGL_FIELD_XYZ_VEC3_F32
- Modifying fields between graph's runs (consisted of Compact or Downsample nodes) may cause a segmentation fault. Fixed in v0.16.1.
- Gaussian noise is not performed in rays coordinates. Fixed in v0.16.2.
- Modifying rays definition between graph's runs may allow computations on invalid pipeline. Fixed in v0.16.2.
- Added feature to simulate velocity distortion
- Added API call to specify the delay between firing each ray:
rgl_node_rays_set_time_offsets
- Added API call to perform raytracing with velocity distortion:
rgl_node_raytrace_with_distortion
- Note: it is a simplified version of that feature
- The distortion takes into account only sensor velocity
- The velocity of the objects being scanned by the sensor is not considered
- Added API call to specify the delay between firing each ray:
- Improved ray range configuration
- Added API call to define min and max range for rays:
rgl_node_rays_set_range
- The range for each ray can be specified individually
- Modified API call:
rgl_node_raytrace- No longer takes range as a parameter
- Added API call to define min and max range for rays:
- Improved tape tools
- Multi-lidar tapes are now supported by
tapeVisualizer
- Multi-lidar tapes are now supported by
- Fixed
-march=nativeimposed compilation option- Library builds are compatible with all 64-bit CPUs
vcpkgtag has been updatedPCLversion has been upgraded (1.13.0 -> 1.13.1)
- Fixed missing dependencies for ROS2 standalone build
- Fixed tape for API call
rgl_entity_set_id - Fixed
rgl_node_points_visualize- Fixed blocking spin loop for up to 1s on some machines
- Fixed segmentation fault on window close
- Fixed handling multiple windows at the same time
- Fixed linking the tests on Windows
- Destroying
rgl_node_points_visualizemay deadlock on some machines if multiple windows are spawn - Destroying
rgl_node_points_visualizemay not close window immediately - main thread exit needed
- Fixed building
PCLon Windowsvcpkgtag has been updatedPCLversion has been upgraded (1.12.0 -> 1.13.0)
- Fixed
rclcpp(ROS2package) initializationRGLchecks whetherrclcppis already initialized- Resolved
spdlogconflict betweenRGLandrclcppby downgrading its version on theRGLsite (1.10.0 -> 1.9.2)
- Added feature to query in runtime if specific extensions were compiled in the binary
- Added API call:
rgl_get_extension_info
- Created a tool that prints all the extensions in the given RGL binary:
inspectLibRGL
- Added API call:
- Added instance/semantic segmentation feature
- Added API call to set the ID of the entity:
rgl_entity_set_id
- Added a new field that can be returned:
RGL_FIELD_ENTITY_ID_I32
- Added API call to set the ID of the entity:
- Added material information reading and converting to intensity based on intensity texture assigned to the entity:
- Added API calls:
rgl_mesh_set_texture_coordsrgl_entity_set_intensity_texturergl_texture_creatergl_texture_destroy
- Added API calls:
- Added publishing raw lidar packets via UDP
- In the closed-source version only
- Added unity tests to field
RGL_FIELD_DISTANCE_F32
- Changed value of non-hits points from
CUDART_INF_FtoFLT_MAX - Updated docker README information
rclcpp(ROS2package) is always initialized byRGL. It could cause a double initialization if the client's code also did it beforeRGL.- Fixed in v0.14.1
- Improved performance of temporal merge node.
- The node doubles the array capacity if it's running out (instead of reallocating every iteration).
- Point cloud formatting for
rgl_graph_write_pcd_fileis performed on the CPU now.- We prefer to avoid transferring huge point cloud to GPU (risk of cuda out of memory error).
rgl_graph_write_pcd_filecauses SEH exception on Windows when trying to save point cloud with ~375 000 000 or more points.- The issue has been reported to PCL (link).
rclcpp(ROS2package) is always initialized byRGL. It could cause a double initialization if the client's code also did it beforeRGL.- Fixed in v0.14.1
- Reimplemented Gaussian Noise from RGL v10
- Added API calls:
rgl_node_gaussian_noise_angular_rayrgl_node_gaussian_noise_angular_hitpointrgl_node_gaussian_noise_distance
- Added API calls:
- Added nodes for spatial and temporal point clouds merge
- Added API calls:
rgl_node_points_spatial_mergergl_node_points_temporal_merge
- Added API calls:
- Added node providing a user-defined point cloud to the RGL pipeline (for testing purposes)
- Added API call:
rgl_node_points_from_array
- Added API call:
- Added parameterized tests for:
rgl_node_points_from_arrayrgl_node_points_transform
- Updated API surface tests
- Added support for multi-raytrace graphs
- Separated PCL nodes and created PCL extension
- Converted node
WritePCDFilePointsNodeinto single API call- Removed API call
rgl_node_points_write_pcd_file - Added API call
rgl_graph_write_pcd_file
- Removed API call
- Fixed
--build-dirflag insetup.pyscript
- Removed
rgl_graph_node_set_activeAPI call
rclcpp(ROS2package) is always initialized byRGL. It could cause a double initialization if the client's code also did it beforeRGL.- Fixed in v0.14.1
- Distance Gaussian noise:
- Noise is added in wrong coordinate system.
- Error is calculated based on distance to rays coordinates origin (not distance traveled by the ray)
- All fixed in v0.16.2
- ROS2 extension providing a node to publish point cloud into ROS2 topic
- Added API calls (
rgl/api/extensions/ros2.h):rgl_node_points_ros2_publishrgl_node_points_ros2_publish_with_qos
- Necessary scripting to build ROS2 integration in the standalone mode (not requiring ROS2 installation)
- Added API calls (
- API call for setting time on the scene
- TapeVisualizer tool (PoC)
- Currently, it does not handle multiple graphs in the tape, to be improved
- Rewritten build script from bash to python to enable easy building on Windows
- Minor fixes and refactor in the Tape code
- Use safer .at() instead of operator[]
- Using alias type APIObjectID instead of size_t
rclcpp(ROS2package) is always initialized byRGL. It could cause a double initialization if the client's code also did it beforeRGL.- Fixed in v0.14.1
- API call for tape recording activation status
- Fixed dependencies for tapePlayer tool
- Handle invalid logger configuration properly
- Handle empty path passed to tape
- RGL Auto Tape - feature to start Tape on the first API call writing to a path given in compile-time.
- Improved control flow around API initialization and error reporting
- Release build on Linux no longer use debug builds of dependencies (e.g., libPCL)
- Fixed a hidden bug in CacheManager - unsafe removing while iterating
- CUDA Runtime is now linked statically.
The initial release.