question about ros2 bag play
I am tried to use ros2 bag record to save the information of camera topic, but how to use ros2 bag play to loop play the package.
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
I am tried to use ros2 bag record to save the information of camera topic, but how to use ros2 bag play to loop play the package.
In ROS1 you could loop play using the -l
command.
However, it appears that this has not been implemented yet in ROS2.
You can follow the development of rosbag for ROS2 here https://github.com/ros2/rosbag2
The option has been implemented in April 2020 (https://github.com/ros2/rosbag2/commi...)
Use the -l (or --loop) option:
ros2 bag play <bagfile.db3> --loop
I simply use loop in batch file:
FOR /L %%A IN (1,1,10) DO (
ECHO %%A
ros2 bag play <path to rosbag>
)
Asked: 2019-07-16 21:40:46 -0600
Seen: 2,909 times
Last updated: Nov 19 '20
Is it possible in ROS2 to concurrently RW a bag file?
convert/use rosbag1 with ROS2 on Ubuntu 22.04
ROS2 equivalents to ROS1 roscd, rosmsg rossrv...
rmw_implementation not available at this time
Pointcloud value at a given pixel
ROS2: Turtlebot3 tutorial. launch error.
How to handle a blocking function inside a node?