您的位置:首页 > 其它

ubuntu14.04 利用ros usb_cam包驱动摄像头后显示图像上下颠倒的解决方法

2017-09-20 16:26 731 查看
1、利用cv_camera(http://wiki.ros.org/cv_camera)包解决

$ mkdir -p ~/camera_ws/src

$ cd ~/camera_ws/

$ catkin_make

$ source devel/setup.bash

$ cd src

$ git clone https://github.com/OTL/cv_camera.git
$ cd ..

$ catkin_make
$ source devel/setup.bash

2、在cv_camera包下建立launch文件夹,并建立my_camera.lauch文件,launch文件内容如下:

<launch>

  <node name="cv_camera" pkg="cv_camera" type="cv_camera_node" output="screen" >

    <param name="device_id" type="int" value="0" />

  </node>

  <node name="image_view" pkg="image_view" type="image_view" respawn="false" output="screen">

    <remap from="image" to="/cv_camera/image_raw"/>

    <param name="autosize" value="true" />

  </node>

</launch>


3、执行launch文件


$ cd ~/camera_ws/

$ roslaunch cv_camera my_camera.launch
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: