Harman Patil (Editor)

Robot Operating System

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Development status
  
Active

Operating system
  
Linux

Written in
  
C++ or Python

Robot Operating System

Original author(s)
  
Willow Garage Stanford Artificial Intelligence Laboratory

Initial release
  
2007; 10 years ago (2007)

Stable release
  
Kinetic Kame / 23 May 2016; 9 months ago (2016-05-23)

Robot Operating System (ROS) is a collection of software frameworks for robot software development, (see also Robotics middleware) providing operating system-like functionality on a heterogeneous computer cluster. ROS provides standard operating system services such as hardware abstraction, low-level device control, implementation of commonly used functionality, message-passing between processes, and package management. Running sets of ROS-based processes are represented in a graph architecture where processing takes place in nodes that may receive, post and multiplex sensor, control, state, planning, actuator and other messages. Despite the importance of reactivity and low latency in robot control, ROS, itself, is not a real-time OS (RTOS), though it is possible to integrate ROS with real-time code. The lack of support for real-time systems is being addressed in the creation of ROS 2.0.

Contents

Software in the ROS Ecosystem can be separated into three groups:

  • language-and platform-independent tools used for building and distributing ROS-based software;
  • ROS client library implementations such as roscpp, rospy, and roslisp;
  • packages containing application-related code which uses one or more ROS client libraries.
  • Both the language-independent tools and the main client libraries (C++, Python, LISP) are released under the terms of the BSD license, and as such are open source software and free for both commercial and research use. The majority of other packages are licensed under a variety of open source licenses. These other packages implement commonly used functionality and applications such as hardware drivers, robot models, datatypes, planning, perception, simultaneous localization and mapping, simulation tools, and other algorithms.

    The main ROS client libraries (C++, Python, LISP) are geared toward a Unix-like system, primarily because of their dependence on large collections of open-source software dependencies. For these client libraries, Ubuntu Linux is listed as "Supported" while other variants such as Fedora Linux, macOS, and Microsoft Windows are designated "Experimental" and are supported by the community. The native Java ROS client library, rosjava, however, does not share these limitations and has enabled ROS-based software to be written for the Android OS. rosjava has also enabled ROS to be integrated into an officially-supported MATLAB toolbox which can be used on Linux, macOS, and Microsoft Windows. A JavaScript client library, roslibjs has also been developed which enables integration of software into a ROS system via any standards-compliant web browser.

    History

    ROS was originally developed in 2007 under the name switchyard by the Stanford Artificial Intelligence Laboratory in support of the Stanford AI Robot STAIR (STanford AI Robot) project. Description of STAIR on its homepage:

    Our single robot platform will integrate methods drawn from all areas of AI, including machine learning, vision, navigation, planning, reasoning, and speech/natural language processing. This is in distinct contrast to the 30-year trend of working on fragmented AI sub-fields, and will be a vehicle for driving research towards true integrated AI.

    From 2008 until 2013, development was performed primarily at Willow Garage, a robotics research institute/incubator. During that time, researchers at more than twenty institutions collaborated with Willow Garage engineers in a federated development model.

    In February 2013, ROS stewardship transitioned to the Open Source Robotics Foundation. In August 2013, a blog posting announced that Willow Garage would be absorbed by another company started by its founder, Suitable Technologies. The support responsibilities for the PR2 created by Willow Garage were also subsequently taken over by Clearpath Robotics.

    Applications

    ROS areas include:

  • a master coordination node
  • publishing or subscribing to data streams: images, stereo, laser, control, actuator, contact ...
  • multiplexing information
  • node creation and destruction
  • nodes are seamlessly distributed, allowing distributed operation over multi-core, multi-processor, GPUs and clusters
  • logging
  • parameter server
  • test systems
  • ROS package application areas will include:

  • perception
  • object identification
  • segmentation and recognition
  • Face recognition
  • gesture recognition
  • motion tracking
  • egomotion
  • motion understanding
  • structure from motion (SFM)
  • stereo vision: depth perception via two cameras
  • motion
  • mobile robotics
  • control
  • planning
  • grasping
  • ROS-Industrial is a BSD-licensed “hardware-agnostic” software development program to create a Unified Robot Description Format (URDF) for industrial robots.

    Version history

    ROS releases may be incompatible with other releases and are often referred to by code name rather than version number. The major releases so far are:

    Ports to robots and boards

  • ABB, Adept, Fanuc, Motoman, and Universal Robots are supported by ROS-Industrial
  • Baxter at Rethink Robotics, Inc.
  • BeagleBoard. The robotics lab of the Katholieke Universiteit Leuven, Belgium: has ported ROS to the Beagleboard
  • HERB developed at Carnegie Mellon University in Intel's personal robotics program
  • Husky A200 robot developed (and integrated into ROS) by Clearpath Robotics
  • PR1 personal robot developed in Ken Salisbury's lab at Stanford
  • PR2 personal robot being developed at Willow Garage
  • Raven II Surgical Robotic Research Platform
  • rosbridge protocol and server Brown University developed the rosbridge protocol to enable any robot or computing environment to integrate with ROS using JSON-based messaging, such as for common web browsers, Matlab, Microsoft Windows, OS X, and embedded systems
  • Shadow Robot Hand – A Fully dexterous humanoid hand.
  • STAIR I and II robots developed in Andrew Ng's lab at Stanford
  • SummitXL: Mobile robot developed by Robotnik, an engineering company specialized in mobile robots, robotic arms and industrial solutions with ROS architecture.
  • Nao humanoid: University of Freiburg's Humanoid Robots Lab developed a ROS integration for the Nao humanoid based on an initial port by Brown University
  • UBR1 developed by Unbounded Robotics, a spin-off of Willow Garage.
  • ROS packages

    ROS contains many open source implementations of common robotics functionality and algorithms. These open source implementations are organized into "packages". Many packages are included as part of ROS distributions, while others may be developed by individuals and distributed through code sharing sites such as github. For a list of some of the available packages for ROS, see: http://www.ros.org/browse/list.php

  • RT middleware – Robot middleware standard/implementations. RT-component is discussed / defined by the Object Management Group.
  • References

    Robot Operating System Wikipedia