Robot Operating System Cookbook
eBook - ePub

Robot Operating System Cookbook

Over 70 recipes to help you master advanced ROS concepts

Kumar Bipin

Buch teilen
  1. 484 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Robot Operating System Cookbook

Over 70 recipes to help you master advanced ROS concepts

Kumar Bipin

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Leverage the power of ROS to build exciting collaborative robots.About This Book• Delve into an open source, meta-operating system for your robot• Get acquainted with tools and libraries for building and running code on multiple platforms• Use Gazebo to model your robot and create a virtual environmentWho This Book Is ForIf you're a researcher or engineer with an interest in the problems, solutions, and future research issues that you may encounter in the development of robotic applications, this book is for you. Basic knowledge of C++ and Python programming with the GNU/Linux environment is strongly recommended to assist with understanding the key concepts covered in the book.What You Will Learn• Explore advanced concepts, such as ROS pluginlib, nodelets, and actionlib• Work with ROS visualization, profiling, and debugging tools• Gain experience in robot modeling and simulation using Gazebo• Understand the ROS Navigation Stack for mobile robots• Configure a MoveIt! package for a manipulator robot• Develop an autonomous navigation framework for MAV using ORB SLAM and MoveIt• Integrate sensors, actuators, and robots into the ROS ecosystem• Get acquainted with the ROS-Industrial package with hardware support, capabilities, and applicationsIn DetailThis book will leverage the power of ROS with an introduction to its core and advanced concepts through exciting recipes. You will get acquainted with the use of different synchronous and asynchronous communication methods, including messages, services, and actions. You will learn how to use the various debugging and visualization tools used in development and how to interface sensors and actuators with the ROS framework.Firstly, you will get to grips with ROS simulation frameworks, such as Gazebo and RotorS for modeling and simulating any physical robot and virtual environment. You will also cover mobile robotics, micro-aerial vehicles, and robotic arms, which are the leading branches of robotic applications. Robot Operating System Cookbook will also guide you in the development of an autonomous navigation framework for both mobile robots and micro-aerial vehicles.Finally, you will explore ROS-Industrial, an open source project that extends the advanced capabilities of ROS software to manufacturing industries.Style and approachThe goal of this book is to provide an integrated overview of the concepts and techniques. ROS is not an operating system in the traditional sense of process management and scheduling; rather, it provides a structured communications layer above the host operating systems of a heterogeneous compute cluster.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Robot Operating System Cookbook als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Robot Operating System Cookbook von Kumar Bipin im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Computer Science & Home Automation. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2018
ISBN
9781783987450

Micro Aerial Vehicles in ROS

In this chapter, we will discuss the following recipes:
  • Overview of MAV system design
  • A generic mathematical model of an MAV/drone
  • Simulation of an MAV/drone using RotorS/Gazebo
  • Autonomous navigation framework for an MAV/drone
  • Working with a real MAV/drone – Parrot, Bebop

Introduction

In this chapter, we will learn about a modular micro aerial vehicle (MAV) simulator framework, which enables us to quick start performing research and development on MAVs. After completing this chapter, we will have a ready-to-use MAV simulator, including control and state estimation. The simulator will be designed in a modular way, where different controllers and state estimators can be implied interchangeably to incorporate any new MAVs in a few steps by only changing a parameter file. Moreover, we will also compare different controllers and state estimators with the provided evaluation framework.
The simulator framework is a good starting point for handling higher-level tasks such as collision avoidance and path planning with Simultaneous Localization and Mapping (SLAM). We will discuss the design of all components, which will be analogous to their real world counterparts. Thus, this enables the usage of the same controllers and state estimators, including their configuration parameters, in the simulation as well as in the real MAV.

Overview of MAV system design

The research and development of algorithms on MAVs needs access to expensive hardware, and field experiments usually consume a considerable amount of time, as well as requiring a trained pilot for execution. However, most of the errors, occurring on real platforms, are tough to reproduce, which usually results in damaging the vehicle. Hence, the RotorS simulator framework has been developed to reduce field experiment times, which makes debugging easier and finally reduces the crashes of real MAVs. Moreover, this is also useful for student projects, where access to an expensive real platform may not be permitted.
To perform high-level experiments such as collision avoidance and path planning, including SLAM for autonomous navigation, the simulator framework could be used for the provided model of MAVs. In addition, the framework also includes a position controller and a state estimator.

Getting ready

In this chapter, we will describe in detail the steps required to set up the RotorS simulator framework, shown in the following screenshot, including the Robot Operating System (ROS) and Gazebo. Once this chapter has been completed, we will be able to set up the simulator, attach basic sensors to a MAV, and make it able to navigate autonomously in the virtual world:
RotorS simulator
We will also be able to compare the algorithms using the evaluation scripts. Finally, we will discuss how all the aspects learned and methods developed in this chapter could be then applied to a real MAV.
An overview of the primary components of the RotorS simulator is shown in the following diagram. Although, in this chapter, we will focus on the simulation parts, which are shown on the left side in the following diagram, a lot of effort has been made to keep the structure of the simulator similar to the real system. Ideally, all high-level components used in a simulated environment could be run on the real platform without any major changes:
MAV system design
All components, used on real MAVs, can be simulated by Gazebo plugins and a physics engine. We have developed the simulator as a modular way of assembling MAVs, where an MAV consists of a body frame, a fixed number of rotors, which can be placed at specified locations, and several sensors, which can be attached to the body as required. Each rotor has its own motor dynamics, the parameters of which can be identified on a real MAV, a Firefly from Ascending Technology using recorded flight data. Similarly, several sensors, such as an Inertial Measurement Unit (IMU), a stereo camera, GPS, and sensors developed by the user can be attached to the body frame. Moreover, we will also implement noise models for the applied sensors to simulate realistic conditions.
We will discuss an implementation of a geometric controller with a simple interface to facilitate the development of different contro...

Inhaltsverzeichnis