footprint.cpp
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2013, Willow Garage, Inc.
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions are met:
00007  *
00008  *     * Redistributions of source code must retain the above copyright
00009  *       notice, this list of conditions and the following disclaimer.
00010  *     * Redistributions in binary form must reproduce the above copyright
00011  *       notice, this list of conditions and the following disclaimer in the
00012  *       documentation and/or other materials provided with the distribution.
00013  *     * Neither the name of the Willow Garage, Inc. nor the names of its
00014  *       contributors may be used to endorse or promote products derived from
00015  *       this software without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00027  * POSSIBILITY OF SUCH DAMAGE.
00028  */
00029 
00030 #include<costmap_2d/costmap_math.h>
00031 #include <boost/tokenizer.hpp>
00032 #include <boost/foreach.hpp>
00033 #include <boost/algorithm/string.hpp>
00034 #include <costmap_2d/footprint.h>
00035 #include<geometry_msgs/Point32.h>
00036 
00037 namespace costmap_2d
00038 {
00039 
00040 void calculateMinAndMaxDistances(const std::vector<geometry_msgs::Point>& footprint, double& min_dist, double& max_dist)
00041 {
00042   min_dist = std::numeric_limits<double>::max();
00043   max_dist = 0.0;
00044 
00045   if (footprint.size() <= 2)
00046   {
00047     return;
00048   }
00049 
00050   for (unsigned int i = 0; i < footprint.size() - 1; ++i)
00051   {
00052     //check the distance from the robot center point to the first vertex
00053     double vertex_dist = distance(0.0, 0.0, footprint[i].x, footprint[i].y);
00054     double edge_dist = distanceToLine(0.0, 0.0, footprint[i].x, footprint[i].y,
00055                                       footprint[i + 1].x, footprint[i + 1].y);
00056     min_dist = std::min(min_dist, std::min(vertex_dist, edge_dist));
00057     max_dist = std::max(max_dist, std::max(vertex_dist, edge_dist));
00058   }
00059 
00060   //we also need to do the last vertex and the first vertex
00061   double vertex_dist = distance(0.0, 0.0, footprint.back().x, footprint.back().y);
00062   double edge_dist = distanceToLine(0.0, 0.0, footprint.back().x, footprint.back().y,
00063                                       footprint.front().x, footprint.front().y);
00064   min_dist = std::min(min_dist, std::min(vertex_dist, edge_dist));
00065   max_dist = std::max(max_dist, std::max(vertex_dist, edge_dist));
00066 }
00067 
00068 geometry_msgs::Point32 toPoint32(geometry_msgs::Point pt)
00069 {
00070   geometry_msgs::Point32 point32;
00071   point32.x = pt.x;
00072   point32.y = pt.y;
00073   point32.z = pt.z;
00074   return point32;
00075 }
00076 
00077 geometry_msgs::Point toPoint(geometry_msgs::Point32 pt)
00078 {
00079   geometry_msgs::Point point;
00080   point.x = pt.x;
00081   point.y = pt.y;
00082   point.z = pt.z;
00083   return point;
00084 }
00085 
00086 geometry_msgs::Polygon toPolygon(std::vector<geometry_msgs::Point> pts)
00087 {
00088   geometry_msgs::Polygon polygon;
00089   for(int i=0;i<pts.size();i++){
00090     polygon.points.push_back( toPoint32(pts[i]) );
00091   }
00092   return polygon;
00093 }
00094 
00095 std::vector<geometry_msgs::Point> toPointVector(geometry_msgs::Polygon polygon)
00096 {
00097   std::vector<geometry_msgs::Point> pts;
00098   for(int i=0;i<polygon.points.size();i++)
00099   {
00100     pts.push_back( toPoint(polygon.points[i] ) );
00101   }
00102   return pts;
00103 }
00104 
00105 } // end namespace costmap_2d


costmap_2d
Author(s): Eitan Marder-Eppstein, David V. Lu!!, Dave Hershberger, contradict@gmail.com
autogenerated on Thu Aug 27 2015 14:06:55