Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
ROS Robotics Projects
ROS Robotics Projects

ROS Robotics Projects: Make your robots see, sense, and interact with cool and engaging projects with Robotic Operating System

Arrow left icon
Profile Icon Lentin Joseph
Arrow right icon
Can$38.99 Can$55.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1 (11 Ratings)
eBook Mar 2017 452 pages 1st Edition
eBook
Can$38.99 Can$55.99
Paperback
Can$69.99
Subscription
Free Trial
Arrow left icon
Profile Icon Lentin Joseph
Arrow right icon
Can$38.99 Can$55.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1 (11 Ratings)
eBook Mar 2017 452 pages 1st Edition
eBook
Can$38.99 Can$55.99
Paperback
Can$69.99
Subscription
Free Trial
eBook
Can$38.99 Can$55.99
Paperback
Can$69.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

ROS Robotics Projects

Chapter 2. Face Detection and Tracking Using ROS, OpenCV and Dynamixel Servos

One of the capabilities of most service and social robots is face detection and tracking. These robots can identify faces and can move their heads according to the human face that moves around it. There are numerous implementations of face detection and tracking systems on the Web. Most trackers have a pan-and-tilt mechanism, and a camera is mounted on the top of the servos. In this chapter, we will see a simple tracker that only has a pan mechanism. We are going to use a USB webcam mounted on an AX-12 Dynamixel servo. The controlling of Dynamixel servo and image processing are done in ROS.

The following topics will be covered in this chapter:

  • An overview of the project
  • Hardware and software prerequisites
  • Configuring Dynamixel AX-12 servos
  • The connection diagram of the project
  • Interfacing Dynamixel with ROS
  • Creating ROS packages for a face tracker and controller
  • The ROS-OpenCV interface
  • Implementing a face tracker...

Overview of the project

The aim of the project is to build a simple face tracker that can track face only along the horizontal axis of the camera. The face tracker hardware consists of a webcam, Dynamixel servo called AX-12, and a supporting bracket to mount the camera on the servo. The servo tracker will follow the face until it aligns to the center of the image from the webcam. Once it reaches the center, it will stop and wait for face movement. The face detection is done using an OpenCV and ROS interface, and the controlling of the servo is done using a Dynamixel motor driver in ROS.

We are going to create two ROS packages for this complete tracking system; one is for face detection and finding the centroid of the face, and the other is for sending commands to the servo to track the face using the centroid values.

Okay! Let's start discussing the hardware and software prerequisites of this project.

Note

The complete source code of this project can be cloned from the following...

Hardware and software prerequisites

The following is a table of the hardware components that can be used for building this project. You can also see the rough price and a purchase link for each component.

List of hardware components:

No

Component name

Estimated price (USD)

Purchase link

1

Webcam

32

https://amzn.com/B003LVZO8S

2

Dynamixel AX-12A servo with mounting bracket

76

https://amzn.com/B0051OXJXU

3

USB-to-Dynamixel Adapter

50

http://www.robotshop.com/en/robotis-usb-to-dynamixel-adapter.html

4

Extra 3-pin cables for AX-12 servos

12

http://www.trossenrobotics.com/p/100mm-3-Pin-DYNAMIXEL-Compatible-Cable-10-Pack

5

Power adapter

5

https://amzn.com/B005JRGOCM

6

6-port AX/MX power hub

5

http://www.trossenrobotics.com/6-port-ax-mx-power-hub

7

USB extension cable

1

https://amzn.com/B00YBKA5Z0

Total cost with shipping and tax

Around 190-200

Note

The URLs and prices can vary. If the links are not available, a Google search...

Interfacing Dynamixel with ROS

If you successfully configured the Dynamixel servo, then it will be very easy to interface Dynamixel with ROS running on Ubuntu. As we've already discussed, there is no need of an FTDI driver in Ubuntu because it's already built into the kernel. The only thing we have to do is install the ROS Dynamixel driver packages.

The ROS Dynamixel packages are available at the following link:

http://wiki.ros.org/dynamixel_motor

You can install the Dynamixel ROS packages using commands we'll look at now.

Installing the ROS dynamixel_motor packages

The ROS dynamixel_motor package stack is a dependency for the face tracker project, so we can install it to the ros_project_dependencies_ws ROS workspace.

Open a Terminal and switch to the src folder of the workspace:

$ cd ~/ros_project_dependencies_ws/src

Clone the latest Dynamixel driver packages from GitHub:

$ git clone https://github.com/arebgun/dynamixel_motor

Remember to do a catkin_make to build the entire packages...

Creating face tracker ROS packages

Let's start creating a new workspace for keeping the entire ROS project files for this book. You can name the workspace ros_robotics_projects_ws.

Download or clone the source code of the book from GitHub using the following link.

$ git clone https://github.com/qboticslabs/ros_robotics_projects

Now, you can copy two packages named face_tracker_pkg and face_tracker_control from the chapter_2_codes folder into the src folder of ros_robotics_projects_ws.

Do a catkin_make to build the two project packages!

Yes, you have set up the face tracker packages on your system, but what if you want to create your own package for tracking? First, delete the current packages that you copied to the src folder, and use the following commands to create the packages.

Note

Note that you should be in the src folder of ros_robotics_projects_ws while creating the new packages, and there should not be any existing packages from the book's GitHub code.

Switch to the src folder...

Overview of the project


The aim of the project is to build a simple face tracker that can track face only along the horizontal axis of the camera. The face tracker hardware consists of a webcam, Dynamixel servo called AX-12, and a supporting bracket to mount the camera on the servo. The servo tracker will follow the face until it aligns to the center of the image from the webcam. Once it reaches the center, it will stop and wait for face movement. The face detection is done using an OpenCV and ROS interface, and the controlling of the servo is done using a Dynamixel motor driver in ROS.

We are going to create two ROS packages for this complete tracking system; one is for face detection and finding the centroid of the face, and the other is for sending commands to the servo to track the face using the centroid values.

Okay! Let's start discussing the hardware and software prerequisites of this project.

Note

The complete source code of this project can be cloned from the following Git repository...

Hardware and software prerequisites


The following is a table of the hardware components that can be used for building this project. You can also see the rough price and a purchase link for each component.

List of hardware components:

No

Component name

Estimated price (USD)

Purchase link

1

Webcam

32

https://amzn.com/B003LVZO8S

2

Dynamixel AX-12A servo with mounting bracket

76

https://amzn.com/B0051OXJXU

3

USB-to-Dynamixel Adapter

50

http://www.robotshop.com/en/robotis-usb-to-dynamixel-adapter.html

4

Extra 3-pin cables for AX-12 servos

12

http://www.trossenrobotics.com/p/100mm-3-Pin-DYNAMIXEL-Compatible-Cable-10-Pack

5

Power adapter

5

https://amzn.com/B005JRGOCM

6

6-port AX/MX power hub

5

http://www.trossenrobotics.com/6-port-ax-mx-power-hub

7

USB extension cable

1

https://amzn.com/B00YBKA5Z0

Total cost with shipping and tax

Around 190-200

Note

The URLs and prices can vary. If the links are not available, a Google search might...

Interfacing Dynamixel with ROS


If you successfully configured the Dynamixel servo, then it will be very easy to interface Dynamixel with ROS running on Ubuntu. As we've already discussed, there is no need of an FTDI driver in Ubuntu because it's already built into the kernel. The only thing we have to do is install the ROS Dynamixel driver packages.

The ROS Dynamixel packages are available at the following link:

http://wiki.ros.org/dynamixel_motor

You can install the Dynamixel ROS packages using commands we'll look at now.

Installing the ROS dynamixel_motor packages

The ROS dynamixel_motor package stack is a dependency for the face tracker project, so we can install it to the ros_project_dependencies_ws ROS workspace.

Open a Terminal and switch to the src folder of the workspace:

$ cd ~/ros_project_dependencies_ws/src

Clone the latest Dynamixel driver packages from GitHub:

$ git clone https://github.com/arebgun/dynamixel_motor

Remember to do a catkin_make to build the entire packages of the...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Create and program cool robotic projects using powerful ROS libraries
  • Work through concrete examples that will help you build your own robotic systems of varying complexity levels
  • This book provides relevant and fun-filled examples so you can make your own robots that can run and work

Description

Robot Operating System is one of the most widely used software frameworks for robotic research and for companies to model, simulate, and prototype robots. Applying your knowledge of ROS to actual robotics is much more difficult than people realize, but this title will give you what you need to create your own robotics in no time! This book is packed with over 14 ROS robotics projects that can be prototyped without requiring a lot of hardware. The book starts with an introduction of ROS and its installation procedure. After discussing the basics, you’ll be taken through great projects, such as building a self-driving car, an autonomous mobile robot, and image recognition using deep learning and ROS. You can find ROS robotics applications for beginner, intermediate, and expert levels inside! This book will be the perfect companion for a robotics enthusiast who really wants to do something big in the field.

Who is this book for?

This book is for robotic enthusiasts and researchers who would like to build robot applications using ROS. If you are looking to explore advanced ROS features in your projects, then this book is for you. Basic knowledge of ROS, GNU/Linux, and programming concepts is assumed.

What you will learn

  • • Create your own self-driving car using ROS
  • • Build an intelligent robotic application using deep learning and ROS
  • • Master 3D object recognition
  • • Control a robot using virtual reality and ROS
  • • Build your own AI chatter-bot using ROS
  • • Get to know all about the autonomous navigation of robots using ROS
  • • Understand face detection and tracking using ROS
  • • Get to grips with teleoperating robots using hand gestures
  • • Build ROS-based applications using Matlab and Android
  • • Build interactive applications using TurtleBot

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 31, 2017
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781783554720
Category :
Languages :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : Mar 31, 2017
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781783554720
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Can$6 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Can$6 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total Can$ 209.97
ROS Robotics Projects
Can$69.99
Effective Robotics Programming with ROS
Can$69.99
ROS Robotics By Example, Second Edition
Can$69.99
Total Can$ 209.97 Stars icon

Table of Contents

12 Chapters
1. Getting Started with ROS Robotics Application Development Chevron down icon Chevron up icon
2. Face Detection and Tracking Using ROS, OpenCV and Dynamixel Servos Chevron down icon Chevron up icon
3. Building a Siri-Like Chatbot in ROS Chevron down icon Chevron up icon
4. Controlling Embedded Boards Using ROS Chevron down icon Chevron up icon
5. Teleoperate a Robot Using Hand Gestures Chevron down icon Chevron up icon
6. Object Detection and Recognition Chevron down icon Chevron up icon
7. Deep Learning Using ROS and TensorFlow Chevron down icon Chevron up icon
8. ROS on MATLAB and Android Chevron down icon Chevron up icon
9. Building an Autonomous Mobile Robot Chevron down icon Chevron up icon
10. Creating a Self-Driving Car Using ROS Chevron down icon Chevron up icon
11. Teleoperating a Robot Using a VR Headset and Leap Motion Chevron down icon Chevron up icon
12. Controlling Your Robots over the Web Chevron down icon Chevron up icon

Customer reviews

Most Recent
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.1
(11 Ratings)
5 star 54.5%
4 star 18.2%
3 star 18.2%
2 star 0%
1 star 9.1%
Filter icon Filter
Most Recent

Filter reviews by




Daddy Joe Aug 20, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
My very first command FAILED with something about non-existent stuff. Can't get any support from anyone so I'm forced to return it. ROS is a fascinating subject but no more books from this author. This is the second I've had to return because of broken links and code or commands just not working. I guess I'm unlucky but I still have my money and know where NOT to go to learn about ROS.
Amazon Verified review Amazon
ALOK J SHUKLA May 16, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Very good material recommended for practicing Engineers in field of Embedded Systems, IOT & Networking
Amazon Verified review Amazon
CHETHAN S Mar 26, 2018
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Quick help, decent guide
Amazon Verified review Amazon
Amazon Customer Jan 31, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent book with a very gentle ramp up for ROS and Ubuntu beginners that gets into very exciting projects. Well worth it.
Amazon Verified review Amazon
Mohit s. Jul 06, 2017
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
See..when we invest in study material....we need them to be of great quality..... Lentin Joseph have done a great job with the content, "Hats off to him.", but the thing it lacked was publishing quality and print quality. I thought it was in color print and better paper quality but its not. It's not up-to the expectations.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.