footprint_filter.h
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 *  FOOTPRINTAL, 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 
00035 #ifndef LASER_SCAN_FOOTPRINT_FILTER_H
00036 #define LASER_SCAN_FOOTPRINT_FILTER_H
00037 
00045 #include "filters/filter_base.h"
00046 #include "sensor_msgs/LaserScan.h"
00047 #include "tf/transform_listener.h"
00048 #include "sensor_msgs/PointCloud.h"
00049 #include "ros/ros.h"
00050 #include "laser_geometry/laser_geometry.h"
00051 
00052 namespace laser_filters
00053 {
00054 
00055 class LaserScanFootprintFilter : public filters::FilterBase<sensor_msgs::LaserScan>
00056 {
00057 public:
00058   LaserScanFootprintFilter()
00059   {
00060     ROS_WARN("LaserScanFootprintFilter has been deprecated.  Please use PR2LaserScanFootprintFilter instead.\n");
00061   }
00062 
00063   bool configure()
00064   {
00065     if(!getParam("inscribed_radius", inscribed_radius_))
00066     {
00067       ROS_ERROR("LaserScanFootprintFilter needs inscribed_radius to be set");
00068       return false;
00069     }
00070     return true;
00071   }
00072 
00073   virtual ~LaserScanFootprintFilter()
00074   { 
00075 
00076   }
00077 
00078   bool update(const sensor_msgs::LaserScan& input_scan, sensor_msgs::LaserScan& filtered_scan)
00079   {
00080     filtered_scan = input_scan ;
00081     sensor_msgs::PointCloud laser_cloud;
00082 
00083     try{
00084     projector_.transformLaserScanToPointCloud("base_link", input_scan, laser_cloud, tf_);
00085     }
00086     catch(tf::TransformException& ex){
00087       ROS_ERROR("Transform unavailable %s", ex.what());
00088       return false;
00089     }
00090 
00091     int c_idx = indexChannel(laser_cloud);
00092 
00093     if (c_idx == -1 || laser_cloud.channels[c_idx].values.size () == 0){
00094       ROS_ERROR("We need an index channel to be able to filter out the footprint");
00095       return false;
00096     }
00097     
00098     for (unsigned int i=0; i < laser_cloud.points.size(); i++)  
00099     {
00100       if (inFootprint(laser_cloud.points[i])){
00101         int index = laser_cloud.channels[c_idx].values[i];
00102         filtered_scan.ranges[index] = filtered_scan.range_max + 1.0 ; // If so, then make it a value bigger than the max range
00103       }
00104     }
00105     return true;
00106   }
00107 
00108   int indexChannel(const sensor_msgs::PointCloud& scan_cloud){
00109       int c_idx = -1;
00110       for (unsigned int d = 0; d < scan_cloud.channels.size (); d++)
00111       {
00112         if (scan_cloud.channels[d].name == "index")
00113         {
00114           c_idx = d;
00115           break;
00116         }
00117       }
00118       return c_idx;
00119   }
00120 
00121   bool inFootprint(const geometry_msgs::Point32& scan_pt){
00122     if(scan_pt.x < -1.0 * inscribed_radius_ || scan_pt.x > inscribed_radius_ || scan_pt.y < -1.0 * inscribed_radius_ || scan_pt.y > inscribed_radius_)
00123       return false;
00124     return true;
00125   }
00126 
00127 private:
00128   tf::TransformListener tf_;
00129   laser_geometry::LaserProjection projector_;
00130   double inscribed_radius_;
00131 } ;
00132 
00133 }
00134 
00135 #endif // LASER_SCAN_FOOTPRINT_FILTER_H


laser_filters
Author(s): Tully Foote
autogenerated on Fri Jan 3 2014 11:27:39