00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_LM_H_
00041 #define PCL_REGISTRATION_TRANSFORMATION_ESTIMATION_LM_H_
00042
00043 #include <pcl/registration/transformation_estimation.h>
00044 #include <pcl/registration/warp_point_rigid.h>
00045 #include <pcl/registration/distances.h>
00046
00047 namespace pcl
00048 {
00049 namespace registration
00050 {
00058 template <typename PointSource, typename PointTarget, typename MatScalar = float>
00059 class TransformationEstimationLM : public TransformationEstimation<PointSource, PointTarget, MatScalar>
00060 {
00061 typedef pcl::PointCloud<PointSource> PointCloudSource;
00062 typedef typename PointCloudSource::Ptr PointCloudSourcePtr;
00063 typedef typename PointCloudSource::ConstPtr PointCloudSourceConstPtr;
00064
00065 typedef pcl::PointCloud<PointTarget> PointCloudTarget;
00066
00067 typedef PointIndices::Ptr PointIndicesPtr;
00068 typedef PointIndices::ConstPtr PointIndicesConstPtr;
00069
00070 public:
00071 typedef boost::shared_ptr<TransformationEstimationLM<PointSource, PointTarget, MatScalar> > Ptr;
00072 typedef boost::shared_ptr<const TransformationEstimationLM<PointSource, PointTarget, MatScalar> > ConstPtr;
00073
00074 typedef Eigen::Matrix<MatScalar, Eigen::Dynamic, 1> VectorX;
00075 typedef Eigen::Matrix<MatScalar, 4, 1> Vector4;
00076 typedef typename TransformationEstimation<PointSource, PointTarget, MatScalar>::Matrix4 Matrix4;
00077
00079 TransformationEstimationLM ();
00080
00084 TransformationEstimationLM (const TransformationEstimationLM &src) :
00085 tmp_src_ (src.tmp_src_),
00086 tmp_tgt_ (src.tmp_tgt_),
00087 tmp_idx_src_ (src.tmp_idx_src_),
00088 tmp_idx_tgt_ (src.tmp_idx_tgt_),
00089 warp_point_ (src.warp_point_)
00090 {};
00091
00095 TransformationEstimationLM&
00096 operator = (const TransformationEstimationLM &src)
00097 {
00098 tmp_src_ = src.tmp_src_;
00099 tmp_tgt_ = src.tmp_tgt_;
00100 tmp_idx_src_ = src.tmp_idx_src_;
00101 tmp_idx_tgt_ = src.tmp_idx_tgt_;
00102 warp_point_ = src.warp_point_;
00103 }
00104
00106 virtual ~TransformationEstimationLM () {};
00107
00113 inline void
00114 estimateRigidTransformation (
00115 const pcl::PointCloud<PointSource> &cloud_src,
00116 const pcl::PointCloud<PointTarget> &cloud_tgt,
00117 Matrix4 &transformation_matrix) const;
00118
00125 inline void
00126 estimateRigidTransformation (
00127 const pcl::PointCloud<PointSource> &cloud_src,
00128 const std::vector<int> &indices_src,
00129 const pcl::PointCloud<PointTarget> &cloud_tgt,
00130 Matrix4 &transformation_matrix) const;
00131
00140 inline void
00141 estimateRigidTransformation (
00142 const pcl::PointCloud<PointSource> &cloud_src,
00143 const std::vector<int> &indices_src,
00144 const pcl::PointCloud<PointTarget> &cloud_tgt,
00145 const std::vector<int> &indices_tgt,
00146 Matrix4 &transformation_matrix) const;
00147
00154 inline void
00155 estimateRigidTransformation (
00156 const pcl::PointCloud<PointSource> &cloud_src,
00157 const pcl::PointCloud<PointTarget> &cloud_tgt,
00158 const pcl::Correspondences &correspondences,
00159 Matrix4 &transformation_matrix) const;
00160
00164 void
00165 setWarpFunction (const boost::shared_ptr<WarpPointRigid<PointSource, PointTarget, MatScalar> > &warp_fcn)
00166 {
00167 warp_point_ = warp_fcn;
00168 }
00169
00170 protected:
00181 virtual MatScalar
00182 computeDistance (const PointSource &p_src, const PointTarget &p_tgt) const
00183 {
00184 Vector4 s (p_src.x, p_src.y, p_src.z, 0);
00185 Vector4 t (p_tgt.x, p_tgt.y, p_tgt.z, 0);
00186 return ((s - t).norm ());
00187 }
00188
00198 virtual MatScalar
00199 computeDistance (const Vector4 &p_src, const PointTarget &p_tgt) const
00200 {
00201 Vector4 t (p_tgt.x, p_tgt.y, p_tgt.z, 0);
00202 return ((p_src - t).norm ());
00203 }
00204
00206 mutable const PointCloudSource *tmp_src_;
00207
00209 mutable const PointCloudTarget *tmp_tgt_;
00210
00212 mutable const std::vector<int> *tmp_idx_src_;
00213
00215 mutable const std::vector<int> *tmp_idx_tgt_;
00216
00218 boost::shared_ptr<pcl::registration::WarpPointRigid<PointSource, PointTarget, MatScalar> > warp_point_;
00219
00224 template<typename _Scalar, int NX=Eigen::Dynamic, int NY=Eigen::Dynamic>
00225 struct Functor
00226 {
00227 typedef _Scalar Scalar;
00228 enum
00229 {
00230 InputsAtCompileTime = NX,
00231 ValuesAtCompileTime = NY
00232 };
00233 typedef Eigen::Matrix<_Scalar,InputsAtCompileTime,1> InputType;
00234 typedef Eigen::Matrix<_Scalar,ValuesAtCompileTime,1> ValueType;
00235 typedef Eigen::Matrix<_Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType;
00236
00238 Functor () : m_data_points_ (ValuesAtCompileTime) {}
00239
00243 Functor (int m_data_points) : m_data_points_ (m_data_points) {}
00244
00246 virtual ~Functor () {}
00247
00249 int
00250 values () const { return (m_data_points_); }
00251
00252 protected:
00253 int m_data_points_;
00254 };
00255
00256 struct OptimizationFunctor : public Functor<MatScalar>
00257 {
00258 using Functor<MatScalar>::values;
00259
00264 OptimizationFunctor (int m_data_points,
00265 const TransformationEstimationLM *estimator)
00266 : Functor<MatScalar> (m_data_points), estimator_ (estimator)
00267 {}
00268
00272 inline OptimizationFunctor (const OptimizationFunctor &src) :
00273 Functor<MatScalar> (src.m_data_points_), estimator_ ()
00274 {
00275 *this = src;
00276 }
00277
00281 inline OptimizationFunctor&
00282 operator = (const OptimizationFunctor &src)
00283 {
00284 Functor<MatScalar>::operator=(src);
00285 estimator_ = src.estimator_;
00286 return (*this);
00287 }
00288
00290 virtual ~OptimizationFunctor () {}
00291
00296 int
00297 operator () (const VectorX &x, VectorX &fvec) const;
00298
00299 const TransformationEstimationLM<PointSource, PointTarget, MatScalar> *estimator_;
00300 };
00301
00302 struct OptimizationFunctorWithIndices : public Functor<MatScalar>
00303 {
00304 using Functor<MatScalar>::values;
00305
00310 OptimizationFunctorWithIndices (int m_data_points,
00311 const TransformationEstimationLM *estimator)
00312 : Functor<MatScalar> (m_data_points), estimator_ (estimator)
00313 {}
00314
00318 inline OptimizationFunctorWithIndices (const OptimizationFunctorWithIndices &src)
00319 : Functor<MatScalar> (src.m_data_points_), estimator_ ()
00320 {
00321 *this = src;
00322 }
00323
00327 inline OptimizationFunctorWithIndices&
00328 operator = (const OptimizationFunctorWithIndices &src)
00329 {
00330 Functor<MatScalar>::operator=(src);
00331 estimator_ = src.estimator_;
00332 return (*this);
00333 }
00334
00336 virtual ~OptimizationFunctorWithIndices () {}
00337
00342 int
00343 operator () (const VectorX &x, VectorX &fvec) const;
00344
00345 const TransformationEstimationLM<PointSource, PointTarget, MatScalar> *estimator_;
00346 };
00347 public:
00348 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
00349 };
00350 }
00351 }
00352
00353 #include <pcl/registration/impl/transformation_estimation_lm.hpp>
00354
00355 #endif
00356