bag_to_pcd.cpp
Go to the documentation of this file.
00001 /*
00002  * Software License Agreement (BSD License)
00003  *
00004  *  Copyright (c) 2009, Willow Garage, Inc.
00005  *  All rights reserved.
00006  *
00007  *  Redistribution and use in source and binary forms, with or without
00008  *  modification, are permitted provided that the following conditions
00009  *  are met:
00010  *
00011  *   * Redistributions of source code must retain the above copyright
00012  *     notice, this list of conditions and the following disclaimer.
00013  *   * Redistributions in binary form must reproduce the above
00014  *     copyright notice, this list of conditions and the following
00015  *     disclaimer in the documentation and/or other materials provided
00016  *     with the distribution.
00017  *   * Neither the name of Willow Garage, Inc. nor the names of its
00018  *     contributors may be used to endorse or promote products derived
00019  *     from this software without specific prior written permission.
00020  *
00021  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024  *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029  *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031  *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032  *  POSSIBILITY OF SUCH DAMAGE.
00033  *
00034  * $Id: bag_to_pcd.cpp 35812 2011-02-08 00:05:03Z rusu $
00035  *
00036  */
00037 
00047 #include <sstream>
00048 #include <boost/filesystem.hpp>
00049 #include <rosbag/bag.h>
00050 #include <rosbag/view.h>
00051 #include <pcl/io/io.h>
00052 #include <pcl/io/pcd_io.h>
00053 #include <pcl_conversions/pcl_conversions.h>
00054 #include "pcl_ros/transforms.h"
00055 #include <tf/transform_listener.h>
00056 #include <tf/transform_broadcaster.h>
00057 
00058 typedef sensor_msgs::PointCloud2 PointCloud;
00059 typedef PointCloud::Ptr PointCloudPtr;
00060 typedef PointCloud::ConstPtr PointCloudConstPtr;
00061 
00062 /* ---[ */
00063 int
00064   main (int argc, char** argv)
00065 {
00066   ros::init (argc, argv, "bag_to_pcd");
00067   if (argc < 4)
00068   {
00069     std::cerr << "Syntax is: " << argv[0] << " <file_in.bag> <topic> <output_directory> [<target_frame>]" << std::endl;
00070     std::cerr << "Example: " << argv[0] << " data.bag /laser_tilt_cloud ./pointclouds /base_link" << std::endl;
00071     return (-1);
00072   }
00073 
00074   // TF
00075   tf::TransformListener tf_listener;
00076   tf::TransformBroadcaster tf_broadcaster;
00077 
00078   rosbag::Bag bag;
00079   rosbag::View view;
00080   rosbag::View::iterator view_it;
00081 
00082   try
00083   {
00084     bag.open (argv[1], rosbag::bagmode::Read);
00085   } 
00086   catch (rosbag::BagException) 
00087   {
00088     std::cerr << "Error opening file " << argv[1] << std::endl;
00089     return (-1);
00090   }
00091 
00092   view.addQuery (bag, rosbag::TypeQuery ("sensor_msgs/PointCloud2"));
00093   view.addQuery (bag, rosbag::TypeQuery ("tf/tfMessage"));
00094   view.addQuery (bag, rosbag::TypeQuery ("tf2_msgs/TFMessage"));
00095   view_it = view.begin ();
00096 
00097   std::string output_dir = std::string (argv[3]);
00098   boost::filesystem::path outpath (output_dir);
00099   if (!boost::filesystem::exists (outpath))
00100   {
00101     if (!boost::filesystem::create_directories (outpath))
00102     {
00103       std::cerr << "Error creating directory " << output_dir << std::endl;
00104       return (-1);
00105     }
00106     std::cerr << "Creating directory " << output_dir << std::endl;
00107   }
00108 
00109   // Add the PointCloud2 handler
00110   std::cerr << "Saving recorded sensor_msgs::PointCloud2 messages on topic " << argv[2] << " to " << output_dir << std::endl;
00111 
00112   PointCloud cloud_t;
00113   ros::Duration r (0.001);
00114   // Loop over the whole bag file
00115   while (view_it != view.end ())
00116   {
00117     // Handle TF messages first
00118     tf::tfMessage::ConstPtr tf = view_it->instantiate<tf::tfMessage> ();
00119     if (tf != NULL)
00120     {
00121       tf_broadcaster.sendTransform (tf->transforms);
00122       ros::spinOnce ();
00123       r.sleep ();
00124     }
00125     else
00126     {
00127       // Get the PointCloud2 message
00128       PointCloudConstPtr cloud = view_it->instantiate<PointCloud> ();
00129       if (cloud == NULL)
00130       {
00131         ++view_it;
00132         continue;
00133       }
00134 
00135       // If a target_frame was specified
00136       if(argc > 4)
00137       {
00138         // Transform it
00139         if (!pcl_ros::transformPointCloud (argv[4], *cloud, cloud_t, tf_listener))
00140         {
00141          ++view_it;
00142          continue;
00143         }
00144       }
00145       else
00146       {
00147         // Else, don't transform it
00148         cloud_t = *cloud;
00149       }
00150 
00151       std::cerr << "Got " << cloud_t.width * cloud_t.height << " data points in frame " << cloud_t.header.frame_id << " with the following fields: " << pcl::getFieldsList (cloud_t) << std::endl;
00152 
00153       std::stringstream ss;
00154       ss << output_dir << "/" << cloud_t.header.stamp << ".pcd";
00155       std::cerr << "Data saved to " << ss.str () << std::endl;
00156       pcl::io::savePCDFile (ss.str (), cloud_t, Eigen::Vector4f::Zero (),
00157                             Eigen::Quaternionf::Identity (), true);
00158     }
00159     // Increment the iterator
00160     ++view_it;
00161   }
00162 
00163   return (0);
00164 }
00165 /* ]--- */


pcl_ros
Author(s): Open Perception, Julius Kammerl , William Woodall
autogenerated on Thu Jun 6 2019 21:01:44