spline_smoothers.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 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 
00036 #include <arm_navigation_msgs/FilterJointTrajectory.h>
00037 #include <arm_navigation_msgs/FilterJointTrajectoryWithConstraints.h>
00038 #include <spline_smoother/spline_smoother.h>
00039 #include <spline_smoother/linear_spline_velocity_scaler.h>
00040 #include <spline_smoother/clamped_cubic_spline_smoother.h>
00041 #include <spline_smoother/fritsch_butland_spline_smoother.h>
00042 #include <spline_smoother/numerical_differentiation_spline_smoother.h>
00043 #include <spline_smoother/cubic_spline_velocity_scaler.h>
00044 #include <spline_smoother/cubic_parameterized_spline_velocity_scaler.h>
00045 
00046 //  PLUGINLIB_REGISTER_CLASS(class_name, class_type, filters::FilterBase<T>)
00047 
00048 PLUGINLIB_DECLARE_CLASS(spline_smoother,LinearSplineVelocityScalerFilterJointTrajectory, 
00049                         spline_smoother::LinearSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectory>, 
00050                         filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00051 PLUGINLIB_DECLARE_CLASS(spline_smoother,ClampedCubicSplineSmootherFilterJointTrajectory, 
00052                         spline_smoother::ClampedCubicSplineSmoother<arm_navigation_msgs::FilterJointTrajectory>, 
00053                         filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00054 PLUGINLIB_DECLARE_CLASS(spline_smoother,FritschButlandSplineSmootherFilterJointTrajectory, spline_smoother::FritschButlandSplineSmoother<arm_navigation_msgs::FilterJointTrajectory>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00055 PLUGINLIB_DECLARE_CLASS(spline_smoother,NumericalDifferentiationSplineSmootherFilterJointTrajectory, spline_smoother::NumericalDifferentiationSplineSmoother<arm_navigation_msgs::FilterJointTrajectory>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00056 PLUGINLIB_DECLARE_CLASS(spline_smoother,CubicSplineVelocityScalerFilterJointTrajectory, spline_smoother::CubicSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectory>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00057 PLUGINLIB_DECLARE_CLASS(spline_smoother,CubicParameterizedSplineVelocityScalerFilterJointTrajectory, spline_smoother::CubicParameterizedSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectory>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectory>)
00058 
00059 PLUGINLIB_DECLARE_CLASS(spline_smoother,LinearSplineVelocityScalerFilterJointTrajectoryWithConstraints, spline_smoother::LinearSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)
00060 PLUGINLIB_DECLARE_CLASS(spline_smoother,ClampedCubicSplineSmootherFilterJointTrajectoryWithConstraints, spline_smoother::ClampedCubicSplineSmoother<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)
00061 PLUGINLIB_DECLARE_CLASS(spline_smoother,FritschButlandSplineSmootherFilterJointTrajectoryWithConstraints, spline_smoother::FritschButlandSplineSmoother<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)
00062 PLUGINLIB_DECLARE_CLASS(spline_smoother,NumericalDifferentiationSplineSmootherFilterJointTrajectoryWithConstraints, spline_smoother::NumericalDifferentiationSplineSmoother<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)
00063 PLUGINLIB_DECLARE_CLASS(spline_smoother,CubicSplineVelocityScalerFilterJointTrajectoryWithConstraints, spline_smoother::CubicSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)
00064 PLUGINLIB_DECLARE_CLASS(spline_smoother,CubicParameterizedSplineVelocityScalerFilterJointTrajectoryWithConstraints, spline_smoother::CubicParameterizedSplineVelocityScaler<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>, filters::FilterBase<arm_navigation_msgs::FilterJointTrajectoryWithConstraints>)


spline_smoother
Author(s): Mrinal Kalakrishnan / mail@mrinal.net
autogenerated on Thu Dec 12 2013 11:09:50