self_filter.cpp
Go to the documentation of this file.
00001 /*********************************************************************
00002 * Software License Agreement (BSD License)
00003 * 
00004 *  Copyright (c) 2008, 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 the Willow Garage 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 
00037 #include <ros/ros.h>
00038 #include <sstream>
00039 #include "robot_self_filter/self_see_filter.h"
00040 #include <tf/message_filter.h>
00041 #include <message_filters/subscriber.h>
00042 #include <pcl_conversions/pcl_conversions.h>
00043 #include <pcl/filters/voxel_grid.h>
00044 
00045 class SelfFilter
00046 {
00047   public:
00048     SelfFilter (void): nh_ ("~")
00049     {
00050       nh_.param<std::string> ("sensor_frame", sensor_frame_, std::string ());
00051       nh_.param<double> ("subsample_value", subsample_param_, 0.01);
00052       self_filter_ = new filters::SelfFilter<pcl::PointCloud<pcl::PointXYZ> > (nh_);
00053 
00054       sub_ = new message_filters::Subscriber<sensor_msgs::PointCloud2> (root_handle_, "cloud_in", 1);   
00055       mn_ = new tf::MessageFilter<sensor_msgs::PointCloud2> (*sub_, tf_, "", 1);
00056 
00057       //mn_ = new tf::MessageNotifier<sensor_msgs::PointCloud2>(tf_, boost::bind(&SelfFilter::cloudCallback, this, _1), "cloud_in", "", 1);
00058       pointCloudPublisher_ = root_handle_.advertise<sensor_msgs::PointCloud2>("cloud_out", 1);
00059       std::vector<std::string> frames;
00060       self_filter_->getSelfMask()->getLinkNames(frames);
00061       if (frames.empty())
00062       {
00063         ROS_DEBUG ("No valid frames have been passed into the self filter. Using a callback that will just forward scans on.");
00064         no_filter_sub_ = root_handle_.subscribe<sensor_msgs::PointCloud2> ("cloud_in", 1, boost::bind(&SelfFilter::noFilterCallback, this, _1));
00065       }
00066       else
00067       {
00068         ROS_DEBUG ("Valid frames were passed in. We'll filter them.");
00069         mn_->setTargetFrames (frames);
00070         mn_->registerCallback (boost::bind (&SelfFilter::cloudCallback, this, _1));
00071       }
00072     }
00073       
00074     ~SelfFilter (void)
00075     {
00076       delete self_filter_;
00077       delete mn_;
00078       delete sub_;
00079     }
00080       
00081   private:
00082     void 
00083       noFilterCallback (const sensor_msgs::PointCloud2ConstPtr &cloud)
00084     {
00085       pointCloudPublisher_.publish (cloud);
00086       ROS_DEBUG ("Self filter publishing unfiltered frame");
00087     }
00088       
00089     void cloudCallback (const sensor_msgs::PointCloud2ConstPtr &cloud2)
00090     {
00091       ROS_DEBUG ("Got pointcloud that is %f seconds old", (ros::Time::now() - cloud2->header.stamp).toSec ());
00092       std::vector<int> mask;
00093       ros::WallTime tm = ros::WallTime::now ();
00094 
00095       pcl::PointCloud<pcl::PointXYZ> cloud, cloud_filtered;
00096       pcl::fromROSMsg (*cloud2, cloud);
00097 
00098       if (subsample_param_ != 0)
00099       {
00100         pcl::PointCloud<pcl::PointXYZ> cloud_downsampled;
00101         // Set up the downsampling filter
00102         grid_.setLeafSize (subsample_param_, subsample_param_, subsample_param_);     // 1cm leaf size
00103         grid_.setInputCloud (boost::make_shared <pcl::PointCloud<pcl::PointXYZ> > (cloud));
00104         grid_.filter (cloud_downsampled);
00105 
00106         self_filter_->updateWithSensorFrame (cloud_downsampled, cloud_filtered, sensor_frame_);
00107       } 
00108       else 
00109       {
00110         self_filter_->updateWithSensorFrame (cloud, cloud_filtered, sensor_frame_);
00111       }      
00112 
00113       double sec = (ros::WallTime::now() - tm).toSec ();
00114 
00115       ROS_DEBUG ("Self filter: reduced %d points to %d points in %f seconds", (int)cloud.points.size(), (int)cloud_filtered.points.size (), sec);
00116 
00117       sensor_msgs::PointCloud2 out;
00118       pcl::toROSMsg (cloud_filtered, out);
00119       pointCloudPublisher_.publish (out);
00120     }
00121 
00122     tf::TransformListener                                 tf_;
00123     //tf::MessageNotifier<sensor_msgs::PointCloud>           *mn_;
00124     ros::NodeHandle                                       nh_, root_handle_;
00125 
00126     tf::MessageFilter<sensor_msgs::PointCloud2>           *mn_;
00127     message_filters::Subscriber<sensor_msgs::PointCloud2> *sub_;
00128 
00129     filters::SelfFilter<pcl::PointCloud<pcl::PointXYZ> > *self_filter_;
00130     std::string sensor_frame_;
00131     double subsample_param_;
00132 
00133     ros::Publisher                                        pointCloudPublisher_;
00134     ros::Subscriber                                       no_filter_sub_;
00135 
00136     pcl::VoxelGrid<pcl::PointXYZ>                         grid_;
00137 };
00138 
00139 int 
00140   main (int argc, char **argv)
00141 {
00142   ros::init (argc, argv, "self_filter");
00143 
00144   SelfFilter s;
00145   ros::spin ();
00146     
00147   return (0);
00148 }


robot_self_filter
Author(s): Ioan Sucan
autogenerated on Mon Dec 2 2013 12:33:58