从ROS bag文件中提取图像


从ROS bag文件中提取图像

创建launch文件,如下:
export.launch

 <launch> <node pkg="rosbag" type="play" name="rosbag" args="-d 2 $(find image_view)/test.bag"/> <node name="extract" pkg="image_view" type="extract_images" respawn="false" output="screen" cwd="ROS_HOME"> <remap from="image" to="/camera/image_raw"/> </node> </launch>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

将$(find image_view)/test.bag改为你自己的bag文件路径

然后,运行launch文件。

打开一个终端,运行
roscore

打开一个终端,cd到export.launch所在路径下,运行 roslaunch export.launch
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5

所提取的图片在~/.ros路径下,将其移到你的目标文件中,如:

cd ~ mkdir Example mv ~/.ros/*.jpg ~/Example
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

参考ROS wiki: How to export image and video data from a bag file,另该wiki中还有将图片制作成视频的内容。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM