ROS Training - rosbag

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 7

  • @takeiteasy946
    @takeiteasy946 3 года назад +3

    explained it like a boss....nice work

  • @azmyin
    @azmyin 2 года назад

    Excellent tutorial. Would you be doing a tutorial that shows how to step through each step of a rosbag using a python file?

    • @robojacketstraining6059
      @robojacketstraining6059  2 года назад

      Thank you!
      I don't think we'll be doing a tutorial for that as it's a little beyond the scope of this course.

  • @thesushisavage2428
    @thesushisavage2428 3 года назад

    Very helpfull

  • @mbulaikalamai4731
    @mbulaikalamai4731 2 года назад

    How can u record numerous different topics in a very large project without hving to type rosbag everytime on the cmd line

    • @robojacketstraining6059
      @robojacketstraining6059  2 года назад +3

      You can give the record command multiple topics (ie. rosbag record /topic_a /topic_b) and it will record all of them into the same bag. You can also use the '-e' flag to record all topics matching some regular expression.
      If you find yourself always recording the same set of topics for debugging or data collection, you can start the rosbag record command from a launch file. Many projects will set up launch files with topic sets they use frequently. Just set pkg to 'rosbag' and type to 'record', then use the arguments attribute to pass in the topics and settings you'd like to use.

    • @mbulaikalamai4731
      @mbulaikalamai4731 2 года назад

      @@robojacketstraining6059 thanks so much. I did do this but then the rosbag file always ends up corrupted.
      So i just printed the messages directly to a text file. Like a jump over solution.