Hi again!
I'm trying to use some of the extension modules, but I am struggling to integrate it on ROS2 glim_rosbag.
Following the installation procedures on the documentation, I cloned this repo in the ros2_ws/src and did colcon build. The ament build shows that glim_ext has successfully been built.
When I run glim_rosbag, it seems like ROS2 cannot find glim_ext.
The logs are as follows. Before running it, I modified the config_ros.json file and added imu_validator and gnss_global libraries. But these are not found too.
[2024-08-05 08:23:10.711] [glim] [info] config_path: /root/ros2_ws/install/glim/share/glim/config
[2024-08-05 08:23:10.712] [glim] [info] load libodometry_estimation_gpu.so
[2024-08-05 08:23:10.776] [glim] [info] load libsub_mapping.so
[2024-08-05 08:23:10.776] [glim] [info] load libglobal_mapping.so
[2024-08-05 08:23:10.778] [glim] [warning] Extension modules are enabled!!
[2024-08-05 08:23:10.778] [glim] [warning] You must carefully check and follow the licenses of ext modules
[2024-08-05 08:23:10.778] [glim] [warning] glim_ext package path was not found!!
[2024-08-05 08:23:10.778] [glim] [info] load libmemory_monitor.so
[2024-08-05 08:23:10.778] [glim] [info] load libstandard_viewer.so
[2024-08-05 08:23:10.782] [glim] [info] load librviz_viewer.so
[2024-08-05 08:23:10.788] [glim] [info] load libimu_validator.so
[2024-08-05 08:23:10.788] [glim] [warning] failed to open libimu_validator.so
[2024-08-05 08:23:10.788] [glim] [warning] libimu_validator.so: cannot open shared object file: No such file or directory
[2024-08-05 08:23:10.788] [glim] [error] failed to load libimu_validator.so
[2024-08-05 08:23:10.788] [glim] [info] load libgnss_global.so
[2024-08-05 08:23:10.788] [glim] [warning] failed to open libgnss_global.so
[2024-08-05 08:23:10.788] [glim] [warning] libgnss_global.so: cannot open shared object file: No such file or directory
[2024-08-05 08:23:10.788] [glim] [error] failed to load libgnss_global.so
Hi again!
I'm trying to use some of the extension modules, but I am struggling to integrate it on ROS2 glim_rosbag.
Following the installation procedures on the documentation, I cloned this repo in the
ros2_ws/srcand didcolcon build. The ament build shows that glim_ext has successfully been built.When I run
glim_rosbag, it seems like ROS2 cannot find glim_ext.The logs are as follows. Before running it, I modified the
config_ros.jsonfile and added imu_validator and gnss_global libraries. But these are not found too.