Created
June 26, 2017 14:42
-
-
Save kor01/60d454a90be90d58592ac6a08ed8e8d7 to your computer and use it in GitHub Desktop.
[ros record] record ros bag files #ros
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# record a replay | |
mkdir relay | |
cd relay | |
rosbag record -a | |
# play back | |
rosbag play my_bag_files | |
# twice as fast | |
rosbag play -r 2 <your bagfile> | |
# output to a specific file and record specific topic | |
rosbag record -O my_record /turtle1/cmd_vel /turtle1/pose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment