collision_robot_hybrid.h
Go to the documentation of this file.
00001 /*********************************************************************
00002  * Software License Agreement (BSD License)
00003  *
00004  *  Copyright (c) 2012, 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 
00035 /* Author: E. Gil Jones */
00036 
00037 #ifndef MOVEIT_COLLISION_DISTANCE_FIELD_COLLISION_ROBOT_HYBRID_H_
00038 #define MOVEIT_COLLISION_DISTANCE_FIELD_COLLISION_ROBOT_HYBRID_H_
00039 
00040 #include <moveit/collision_detection_fcl/collision_robot_fcl.h>
00041 #include <moveit/collision_distance_field/collision_distance_field_types.h>
00042 #include <moveit/collision_distance_field/collision_common_distance_field.h>
00043 #include <moveit/collision_distance_field/collision_robot_distance_field.h>
00044 
00045 #include <boost/thread/mutex.hpp>
00046 
00047 namespace collision_detection
00048 {
00049 class CollisionRobotHybrid : public collision_detection::CollisionRobotFCL
00050 {
00051 public:
00052   EIGEN_MAKE_ALIGNED_OPERATOR_NEW
00053 
00054   CollisionRobotHybrid(const robot_model::RobotModelConstPtr& kmodel);
00055 
00056   CollisionRobotHybrid(const robot_model::RobotModelConstPtr& kmodel,
00057                        const std::map<std::string, std::vector<CollisionSphere> >& link_body_decompositions,
00058                        double size_x = 3.0, double size_y = 3.0, double size_z = 4.0,
00059                        bool use_signed_distance_field = false, double resolution = .02,
00060                        double collision_tolerance = 0.0, double max_propogation_distance = .25, double padding = 0.0,
00061                        double scale = 1.0);
00062 
00063   CollisionRobotHybrid(const CollisionRobotHybrid& other);
00064 
00065   void
00066   initializeRobotDistanceField(const std::map<std::string, std::vector<CollisionSphere> >& link_body_decompositions,
00067                                double size_x, double size_y, double size_z, bool use_signed_distance_field,
00068                                double resolution, double collision_tolerance, double max_propogation_distance)
00069   {
00070     crobot_distance_->initialize(link_body_decompositions, Eigen::Vector3d(size_x, size_y, size_z),
00071                                  Eigen::Vector3d(0, 0, 0), use_signed_distance_field, resolution, collision_tolerance,
00072                                  max_propogation_distance);
00073   }
00074 
00075   void checkSelfCollisionDistanceField(const collision_detection::CollisionRequest& req,
00076                                        collision_detection::CollisionResult& res,
00077                                        const robot_state::RobotState& state) const;
00078 
00079   void checkSelfCollisionDistanceField(const collision_detection::CollisionRequest& req,
00080                                        collision_detection::CollisionResult& res, const robot_state::RobotState& state,
00081                                        boost::shared_ptr<GroupStateRepresentation>& gsr) const;
00082 
00083   void checkSelfCollisionDistanceField(const collision_detection::CollisionRequest& req,
00084                                        collision_detection::CollisionResult& res, const robot_state::RobotState& state,
00085                                        const collision_detection::AllowedCollisionMatrix& acm) const;
00086 
00087   void checkSelfCollisionDistanceField(const collision_detection::CollisionRequest& req,
00088                                        collision_detection::CollisionResult& res, const robot_state::RobotState& state,
00089                                        const collision_detection::AllowedCollisionMatrix& acm,
00090                                        boost::shared_ptr<GroupStateRepresentation>& gsr) const;
00091   const boost::shared_ptr<const collision_detection::CollisionRobotDistanceField> getCollisionRobotDistanceField() const
00092   {
00093     return crobot_distance_;
00094   }
00095 
00096 protected:
00097   boost::shared_ptr<collision_detection::CollisionRobotDistanceField> crobot_distance_;
00098 };
00099 }
00100 
00101 #endif


moveit_experimental
Author(s): Ioan Sucan , Sachin Chitta , Acorn Pooley , Jorge Nicho
autogenerated on Wed Jun 19 2019 19:24:03