Book Image

Learning ROS for Robotics Programming Second Edition

Book Image

Learning ROS for Robotics Programming Second Edition

Overview of this book

Table of Contents (27 chapters)
Learning ROS for Robotics Programming Second Edition
Credits
About the Author
Acknowledgments
About the Author
Acknowledgments
About the Author
Acknowledgments
About the Author
Acknowledgments
About the Reviewer
About the Reviewer
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Summary


In this chapter we have explored the different tools, algorithms and interfaces which can be used to work with point clouds in ROS. The reader might have noticed that we have tried to link the examples together to provide more insight into how these kinds of nodes might be used in a reusable manner. In any case, given the computational price of point cloud processing, any kind of architectural design will be inextricably linked to the computational capabilities of the system at hand.

The data flow of our examples should start with all of the data producers, which are the pcl_create and the pcl_read. It should continue to the data filters which are the pcl_filter and the pcl_downsampling. After the filtering is performed, more complex information can be extracted through the pcl_planar_segmentation, pcl_partitioning and pcl_matching. Finally, the data can be written to disk through the pcl_write or visualized through the pcl_visualize.

The main objective of this particular chapter was...