| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 人工智能 -> ros学习(2) -> 正文阅读 |
|
[人工智能]ros学习(2) |
整个ROS包括的packages如下:?1. roscpp(ros c++开发接口) 第六章 roscpp · 中国大学MOOC———《机器人操作系统入门》讲义 2. rospy(ros python开发接口) ***Implement a simple Publisher/Subscriber Publisher First lets create a 'scripts' folder to store our Python scripts in: $ mkdir scripts $ cd scripts Then download the example script?talker.py?to your new?scripts?directory and make it executable: $ wget https://raw.github.com/ros/ros_tutorials/kinetic-devel/rospy_tutorials/001_talker_listener/talker.py $ chmod +x talker.py Add the following to your?CMakeLists.txt.?This makes sure the python script gets installed properly, and uses the right python interpreter. catkin_install_python(PROGRAMS scripts/talker.py DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) Subscriber $ roscd beginner_tutorials/scripts/ $ wget https://raw.github.com/ros/ros_tutorials/kinetic-devel/rospy_tutorials/001_talker_listener/listener.py $ chmod +x listener.py Then, edit the?catkin_install_python()?call in your?CMakeLists.txt?so it looks like the following: catkin_install_python(PROGRAMS scripts/talker.py scripts/listener.py DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) Building your nodes We use CMake as our build system and, yes, you have to use it even for Python nodes. This is to make sure that the autogenerated Python code for messages and services is created. Go to your catkin workspace and run?catkin_make: $ cd ~/catkin_ws $ catkin_make Examining the Simple Publisher and Subscriber roscore $ cd ~/catkin_ws $ source ./devel/setup.bash In the last tutorial we made a publisher called "talker". Let's run it: $ source ./devel/setup.bash #(#(必须的,否则[rospack] Error: package 'beginner_tutorials' not found) $ rosrun beginner_tutorials talker (C++) $ rosrun beginner_tutorials talker.py (Python) $ source ./devel/setup.bash #(必须的,否则[rospack] Error: package 'beginner_tutorials' not found) $ rosrun beginner_tutorials listener (C++) $ rosrun beginner_tutorials listener.py (Python) ###特别注意 如果执行 echo?"source?~/catkin_ws/devel/setup.bash"?>>?~/.bashrc? source?~/.bashrc 此后打开的终端,默认配置新创建的workspace的ros环境,无需每次打开一个终端都需要再source?~/catkin_ws/devel/setup.bash(注意直接编辑 ~/.bashrc添加相应的bash文件,再source?~/.bashrc也是不可以的。) |
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/27 8:32:39- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |