Robot Operating System Cookbook
eBook - ePub

Robot Operating System Cookbook

Over 70 recipes to help you master advanced ROS concepts

Kumar Bipin

Partager le livre
  1. 484 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

Robot Operating System Cookbook

Over 70 recipes to help you master advanced ROS concepts

Kumar Bipin

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

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.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Robot Operating System Cookbook est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Robot Operating System Cookbook par Kumar Bipin en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Computer Science et Home Automation. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2018
ISBN
9781783987450
Édition
1
Sous-sujet
Home Automation

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...

Table des matiĂšres