Getting Started: Introduction | Concepts | Higher-Level Concepts | Client Libraries | Technical Overview
目录
The core ROS platform attempts to be as architecture-agnostic as possible. It provides several different modes of communicating data (topics, services, Parameter Server), but it doesn't prescribe how they're used or how they are named. This approach allows ROS to be easily integrated with a variety of architectures, but higher-level concepts are necessary for building larger systems on top of ROS.
There are several stacks, such as common, common_msgs, and geometry, that provide these higher-level concepts for use with ROS and are described below.
Coordinate Frames/Transforms
The tf package provides a distributed, ROS-based framework for calculating the positions of multiple coordinate frames over time.
Actions/Tasks
The actionlib package defines a common, topic-based interface for preemptible tasks in ROS.
Message Ontology
The common_msgs stack provide a base message ontology for robotic systems. It defines several classes of messages, including:
-
actionlib_msgs: messages for representing actions.
-
diagnostic_msgs: messages for sending diagnostic data.
-
geometry_msgs: messages for representing common geometric primitives.
-
nav_msgs: messages for navigation.
-
sensor_msgs: messages for representing sensor data.
Plugins
pluginlib provides a library for dynamically loading libraries in C++ code.
Filters
The filters package provides a C++ library for processing data using a sequence of filters.
Robot Model
The urdf package defines an XML format for representing a robot model and provides a C++ parser.
Cheat Sheet
Check out the ROS cheatsheet.
本文深入探讨了ROS(机器人操作系统)的高级概念,包括坐标系变换、任务动作、消息本体论、插件、过滤器、机器人模型等核心组件。通过介绍tf包、actionlib包、common_msgs堆栈等关键模块,帮助读者理解ROS如何支持复杂机器人系统的构建。
2878

被折叠的 条评论
为什么被折叠?



